Merge pull request #1007

65a3474 change countdown to start connecting to local daemon from 5 to 10 seconds
pull/2/head
luigi1111 7 years ago
commit 850fc25b6d
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

@ -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();
}