mirror of https://github.com/procxx/kepka.git
Fix crash in application closing.
This commit is contained in:
parent
37af963717
commit
1ab4dbe466
|
@ -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..."));
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue