MainApp: send unhandled events to base class

This commit is contained in:
selsta
2019-06-19 20:33:50 +02:00
parent d1e8b6f823
commit 024fe1b834

View File

@@ -38,5 +38,6 @@ bool MainApp::event (QEvent *event)
return true; return true;
} }
return false; // Pass unhandled events to base class
return QApplication::event(event);
} }