diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-06-21 14:43:08 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-06-21 14:43:08 -0500 |
| commit | 8428e77c1600203c7bbbfe89455edea98ee568a8 (patch) | |
| tree | 298c1cfd490a3c0cf5ff5cf790aa49a6d97bb473 | |
| parent | fe40ceab2086b9ad6ccadc95ef682afe0f0616c7 (diff) | |
| parent | 55ad5886b417b6b765ca2b7f61a251d2877f89ed (diff) | |
| download | monzero-gui-8428e77c1600203c7bbbfe89455edea98ee568a8.tar.gz monzero-gui-8428e77c1600203c7bbbfe89455edea98ee568a8.tar.xz monzero-gui-8428e77c1600203c7bbbfe89455edea98ee568a8.zip | |
Merge pull request #2226
55ad588 main: fix UI freeze on close in remote node mode (xiphon)
| -rw-r--r-- | main.qml | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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."); |
