aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2017-12-10 15:50:56 -0600
committerluigi1111 <luigi1111w@gmail.com>2017-12-10 15:50:56 -0600
commit850fc25b6d3d1e35f7ec37ab6b74e62f81f968d8 (patch)
treee5fd5cf11de5605b00fe5d37f2b71eda0a55a546
parente3fde20f7410556400d759e657096b3bf4159612 (diff)
parent65a3474a80d19235b029b84e767fcd146fdb5db5 (diff)
downloadmonzero-gui-850fc25b6d3d1e35f7ec37ab6b74e62f81f968d8.tar.gz
monzero-gui-850fc25b6d3d1e35f7ec37ab6b74e62f81f968d8.tar.xz
monzero-gui-850fc25b6d3d1e35f7ec37ab6b74e62f81f968d8.zip
Merge pull request #1007
65a3474 change countdown to start connecting to local daemon from 5 to 10 seconds
-rw-r--r--components/DaemonManagerDialog.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/DaemonManagerDialog.qml b/components/DaemonManagerDialog.qml
index 009787eb..b87250de 100644
--- a/components/DaemonManagerDialog.qml
+++ b/components/DaemonManagerDialog.qml
@@ -39,13 +39,13 @@ Window {
id: root
modality: Qt.ApplicationModal
flags: Qt.Window | Qt.FramelessWindowHint
- property int countDown: 5;
+ property int countDown: 10;
signal rejected()
signal started();
function open() {
show()
- countDown = 5;
+ countDown = 10;
timer.start();
}