aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorerciccione <erciccione@users.noreply.github.com>2017-12-09 14:20:35 +0100
committererciccione <erciccione@users.noreply.github.com>2017-12-09 14:20:35 +0100
commit65a3474a80d19235b029b84e767fcd146fdb5db5 (patch)
treefefa830c602dad72a09518e1453e9c8964533297 /components
parentd9d2050f2924322ff6f2895addcb6961a49132f9 (diff)
downloadmonzero-gui-65a3474a80d19235b029b84e767fcd146fdb5db5.tar.gz
monzero-gui-65a3474a80d19235b029b84e767fcd146fdb5db5.tar.xz
monzero-gui-65a3474a80d19235b029b84e767fcd146fdb5db5.zip
change countdown to start connecting to local daemon from 5 to 10 seconds
Diffstat (limited to 'components')
-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();
}