diff options
Diffstat (limited to 'muse2/muse/main.cpp')
-rw-r--r-- | muse2/muse/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/muse2/muse/main.cpp b/muse2/muse/main.cpp index fccf801d..936a8aa3 100644 --- a/muse2/muse/main.cpp +++ b/muse2/muse/main.cpp @@ -107,10 +107,10 @@ class MuseApplication : public QApplication { bool notify(QObject* receiver, QEvent* event) { //if (event->type() == QEvent::KeyPress) - // printf("notify key press before app::notify accepted:%d\n", event->isAccepted()); + // printf("notify key press before app::notify accepted:%d\n", event->isAccepted()); // REMOVE Tim bool flag = QApplication::notify(receiver, event); if (event->type() == QEvent::KeyPress) { - //printf("notify key press after app::notify accepted:%d\n", event->isAccepted()); + //printf("notify key press after app::notify accepted:%d\n", event->isAccepted()); // REMOVE Tim QKeyEvent* ke = (QKeyEvent*)event; ///globalKeyState = ke->stateAfter(); globalKeyState = ke->modifiers(); |