1
mirror of https://github.com/monero-project/monero-gui synced 2025-01-02 21:26:24 +01:00

Merge pull request #2226

55ad588 main: fix UI freeze on close in remote node mode (xiphon)
This commit is contained in:
luigi1111 2019-06-21 14:43:08 -05:00
commit 8428e77c16
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

View File

@ -2113,8 +2113,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.");