aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorJacob Brydolf <jacob@brydolf.net>2016-11-07 14:54:49 +0100
committerJaquee <jaquee.monero@gmail.com>2016-11-26 19:36:28 +0100
commit5855700007a1675916440944dbf8d03d4ac886f2 (patch)
treef97aa1f479f8dae2745707edfc27ef14790e3055 /components
parent3a431543fab567d42f5981d82687c1c9a9244f68 (diff)
downloadmonzero-gui-5855700007a1675916440944dbf8d03d4ac886f2.tar.gz
monzero-gui-5855700007a1675916440944dbf8d03d4ac886f2.tar.xz
monzero-gui-5855700007a1675916440944dbf8d03d4ac886f2.zip
daemonManagerDialog: added starting signal
Diffstat (limited to 'components')
-rw-r--r--components/DaemonManagerDialog.qml5
1 files changed, 3 insertions, 2 deletions
diff --git a/components/DaemonManagerDialog.qml b/components/DaemonManagerDialog.qml
index 23f2e9e5..f93cbb9a 100644
--- a/components/DaemonManagerDialog.qml
+++ b/components/DaemonManagerDialog.qml
@@ -41,6 +41,7 @@ Window {
flags: Qt.Window | Qt.FramelessWindowHint
signal rejected()
+ signal started();
function open() {
show()
@@ -91,7 +92,7 @@ Window {
onClicked: {
daemonManager.start();
root.close()
- // root.accepted()
+ root.started()
}
}
@@ -106,8 +107,8 @@ Window {
text: qsTr("Cancel")
onClicked: {
- root.rejected()
root.close()
+ root.rejected()
}
}
}