diff --git a/OutputGLWindow.cpp b/OutputGLWindow.cpp index a71a418..e9ce620 100644 --- a/OutputGLWindow.cpp +++ b/OutputGLWindow.cpp @@ -52,8 +52,14 @@ void OutputGLWindow::keyPressEvent(QKeyEvent *event) setFullScreen(false); emit fullScreenToggled(false); } + else if (event->key() == Qt::Key_Escape) + { + // pass + } else + { QDialog::keyPressEvent(event); + } }