diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2017-12-10 15:50:56 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2017-12-10 15:50:56 -0600 |
| commit | 850fc25b6d3d1e35f7ec37ab6b74e62f81f968d8 (patch) | |
| tree | e5fd5cf11de5605b00fe5d37f2b71eda0a55a546 | |
| parent | e3fde20f7410556400d759e657096b3bf4159612 (diff) | |
| parent | 65a3474a80d19235b029b84e767fcd146fdb5db5 (diff) | |
| download | monzero-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.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(); } |
