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
No known key found for this signature in database
GPG key ID: 2EA0A99A8B07AE5E

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);
} }