diff options
| author | erciccione <erciccione@users.noreply.github.com> | 2017-12-09 14:20:35 +0100 |
|---|---|---|
| committer | erciccione <erciccione@users.noreply.github.com> | 2017-12-09 14:20:35 +0100 |
| commit | 65a3474a80d19235b029b84e767fcd146fdb5db5 (patch) | |
| tree | fefa830c602dad72a09518e1453e9c8964533297 /components/DaemonManagerDialog.qml | |
| parent | d9d2050f2924322ff6f2895addcb6961a49132f9 (diff) | |
| download | monzero-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/DaemonManagerDialog.qml')
| -rw-r--r-- | components/DaemonManagerDialog.qml | 4 |
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(); } |
