settings: enable/disable daemon start/stop buttons

This commit is contained in:
Jacob Brydolf 2016-11-06 23:34:07 +01:00 committed by Jaquee
parent 4e7de8c140
commit 482bd30c00
No known key found for this signature in database
GPG key ID: 384E52B09F45DC39

View file

@ -281,6 +281,7 @@ Rectangle {
StandardButton {
visible: true
enabled: !appWindow.daemonRunning
id: startDaemonButton
width: 110
text: qsTr("Start daemon") + translationManager.emptyString
@ -294,7 +295,8 @@ Rectangle {
}
StandardButton {
visible: false
visible: true
enabled: appWindow.daemonRunning
id: stopDaemonButton
width: 110
text: qsTr("Stop daemon") + translationManager.emptyString
@ -303,8 +305,7 @@ Rectangle {
releasedColor: "#FF6C3C"
pressedColor: "#FF4304"
onClicked: {
//daemonManager.stop();
daemonManager.stop();
}
}
}