Browse Source

Change SSH delete shortcut `-` to `\`

master
Krisjanis Rijnieks 9 years ago
parent
commit
9b7069a7d7
  1. 2
      README.md
  2. 2
      src/Application/Application.cpp

2
README.md

@ -203,7 +203,7 @@ p | toggle perspective warping (quad surfaces only)
f | Toggle fullscreen
s | Save composition
z | Undo
BACKSPACE ('-' via SSH) | Delete surface.
BACKSPACE ('\' via SSH) | Delete surface.
SPACE | Toggle pause for video sources (texture and projection mapping modes)
TAB | Select next source (no need to use the source selection interface)
Arrow keys | Move selection. If no surface is selected in the projection mapping mode, all surfaces are moved.

2
src/Application/Application.cpp

@ -176,7 +176,7 @@ void Application::onCharacterReceived(KeyListenerEventData & e){
case 'D':
args.key = OF_KEY_LEFT;
break;
case '-':
case '\\':
args.key = OF_KEY_BACKSPACE;
break;
}

Loading…
Cancel
Save