Browse Source

Add `-` as replacement for `BACKSPACE` if controlling via SSH

master
Krisjanis Rijnieks 9 years ago
parent
commit
88312e8442
  1. 3
      src/Application/Application.cpp

3
src/Application/Application.cpp

@ -161,6 +161,9 @@ void Application::onCharacterReceived(KeyListenerEventData & e){
case 'D':
args.key = OF_KEY_LEFT;
break;
case '-':
args.key = OF_KEY_BACKSPACE;
break;
}
cout << "TermListener: " << e.character << endl;

Loading…
Cancel
Save