Fix crash in application closing.

This commit is contained in:
John Preston 2019-04-06 12:12:24 +04:00
parent 37af963717
commit 1ab4dbe466
2 changed files with 6 additions and 5 deletions

View File

@ -121,10 +121,11 @@ int Sandbox::start() {
[=] { newInstanceConnected(); }); [=] { newInstanceConnected(); });
crl::on_main(this, [=] { checkForQuit(); }); crl::on_main(this, [=] { checkForQuit(); });
connect( connect(this, &QCoreApplication::aboutToQuit, [=] {
this, customEnterFromEventLoop([&] {
&QCoreApplication::aboutToQuit, closeApplication();
[=] { closeApplication(); }); });
});
if (cManyInstance()) { if (cManyInstance()) {
LOG(("Many instance allowed, starting...")); LOG(("Many instance allowed, starting..."));

View File

@ -128,7 +128,7 @@ void Manager::schedule() {
stopTimer(); stopTimer();
_scheduled = true; _scheduled = true;
Ui::PostponeCall([=] { Ui::PostponeCall(static_cast<QObject*>(this), [=] {
_scheduled = false; _scheduled = false;
if (_forceImmediateUpdate) { if (_forceImmediateUpdate) {
_forceImmediateUpdate = false; _forceImmediateUpdate = false;