settings: enable/disable daemon start/stop buttons

pull/2/head
Jacob Brydolf 8 years ago committed by Jaquee
parent 4e7de8c140
commit 482bd30c00
No known key found for this signature in database
GPG Key ID: 384E52B09F45DC39

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