Merge pull request #2228

024fe1b MainApp: send unhandled events to base class (selsta)
This commit is contained in:
luigi1111 2019-06-21 14:44:06 -05:00
commit 431a789a39
No known key found for this signature in database
GPG key ID: F4ACA0183641E010

View file

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