aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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()
}
}
}