From 091b3b3ee86ebf1c6ca0a6aa72690e58bcb1d11d Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Fri, 27 Jul 2018 14:40:37 -0400 Subject: [PATCH] Disabled global keyboard shortcuts... --- mainwindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mainwindow.cpp b/mainwindow.cpp index 0d2814c..33b5cf4 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -2114,6 +2114,7 @@ void MainWindow::keyPressEvent (QKeyEvent * e) QMainWindow::keyPressEvent (e); } +#if 0 int n; switch(e->key()) { @@ -2229,6 +2230,7 @@ void MainWindow::keyPressEvent (QKeyEvent * e) } break; } +#endif QMainWindow::keyPressEvent (e); }