diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-01-26 02:17:29 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-01-26 02:17:29 +0100 |
commit | b29b8e48fe59f44fd28de5f6879730bcdf34a9dd (patch) | |
tree | ef61afc6c336e9cb7c73ffca91a80370f3c0774f /api | |
parent | efab199484d2b5f1b333257b052a71eef2f4be8a (diff) |
api, opentrack: fix the crash for real this time
Diffstat (limited to 'api')
-rw-r--r-- | api/plugin-api.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/plugin-api.cpp b/api/plugin-api.cpp index ef9e47a1..3bf4b37b 100644 --- a/api/plugin-api.cpp +++ b/api/plugin-api.cpp @@ -9,7 +9,7 @@ void BaseDialog::closeEvent(QCloseEvent*) if (isVisible()) { emit closing(); - close(); + reject(); } } |