diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-06-21 14:44:06 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-06-21 14:44:06 -0500 |
| commit | 431a789a39e5f2451a052ced075daf0570ee4249 (patch) | |
| tree | 12c0bd4be5ba8f879fe60cf4dc64aaf616f07160 /MainApp.cpp | |
| parent | 8428e77c1600203c7bbbfe89455edea98ee568a8 (diff) | |
| parent | 024fe1b83466e1626e0cde68a16d026b15f8ae4c (diff) | |
| download | monzero-gui-431a789a39e5f2451a052ced075daf0570ee4249.tar.gz monzero-gui-431a789a39e5f2451a052ced075daf0570ee4249.tar.xz monzero-gui-431a789a39e5f2451a052ced075daf0570ee4249.zip | |
Merge pull request #2228
024fe1b MainApp: send unhandled events to base class (selsta)
Diffstat (limited to 'MainApp.cpp')
| -rw-r--r-- | MainApp.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MainApp.cpp b/MainApp.cpp index e931f81f..b1c418ce 100644 --- a/MainApp.cpp +++ b/MainApp.cpp @@ -38,5 +38,6 @@ bool MainApp::event (QEvent *event) return true; } - return false; + // Pass unhandled events to base class + return QApplication::event(event); } |
