From 55ad5886b417b6b765ca2b7f61a251d2877f89ed Mon Sep 17 00:00:00 2001 From: xiphon Date: Tue, 18 Jun 2019 11:23:13 +0000 Subject: [PATCH] main: fix UI freeze on close in remote node mode --- main.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/main.qml b/main.qml index 3299c629..3347dbd1 100644 --- a/main.qml +++ b/main.qml @@ -2106,8 +2106,7 @@ ApplicationWindow { } // If daemon is running - prompt user before exiting - if(typeof daemonManager != "undefined" && daemonManager.running(persistentSettings.nettype)) { - + if(typeof daemonManager != "undefined" && daemonRunning) { // Show confirmation dialog confirmationDialog.title = qsTr("Daemon is running") + translationManager.emptyString; confirmationDialog.text = qsTr("Daemon will still be running in background when GUI is closed.");