diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 95cfaab4cf..ace265ad4f 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -803,7 +803,6 @@ bool Application::event(QEvent* event) { } void Application::keyPressEvent(QKeyEvent* event) { - qDebug("Application::keyPressEvent(%x)", event->key()); _keysPressed.insert(event->key()); @@ -1054,7 +1053,6 @@ void Application::keyPressEvent(QKeyEvent* event) { } void Application::keyReleaseEvent(QKeyEvent* event) { - qDebug("Application::keyReleaseEvent(%x)", event->key()); _keysPressed.remove(event->key());