Hide tray icon before exiting

This commit is contained in:
Emil Lundberg 2017-11-22 15:04:42 +01:00
parent 1f6cefea4f
commit 77fbaab011
No known key found for this signature in database
GPG Key ID: 5B9688125FF0B636

View File

@ -133,5 +133,8 @@ int main(int argc, char *argv[])
}
}
#endif
return app.exec();
const int status = app.exec();
trayIcon->hide();
return status;
}