Merge pull request #1007

65a3474 change countdown to start connecting to local daemon from 5 to 10 seconds
This commit is contained in:
luigi1111 2017-12-10 15:50:56 -06:00
commit 850fc25b6d
No known key found for this signature in database
GPG key ID: F4ACA0183641E010

View file

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