Browse Source

Disable terminal listener to see if it solves TAB issue

master
Krisjanis Rijnieks 9 years ago
parent
commit
a8c51ba6ee
  1. 6
      src/Application/Application.cpp

6
src/Application/Application.cpp

@ -143,7 +143,11 @@ bool Application::isShiftKeyDown(){
} }
void Application::onCharacterReceived(KeyListenerEventData & e){ void Application::onCharacterReceived(KeyListenerEventData & e){
ofKeyEventArgs args; return;
// TODO: Check if the same char is not comming through regular key event
ofKeyEventArgs args;
args.key = (int)e.character; args.key = (int)e.character;
// These if's have been added because we get // These if's have been added because we get

Loading…
Cancel
Save