mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-23 12:09:57 +00:00
change countdown to start connecting to local daemon from 5 to 10 seconds
This commit is contained in:
parent
d9d2050f29
commit
65a3474a80
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue