settings-node: implement correct 'Start/Stop daemon' button logic

This commit is contained in:
xiphon 2018-11-06 02:50:57 +00:00
parent 6eb8c8c9d6
commit 808ecf57ac

View file

@ -383,7 +383,7 @@ Rectangle{
Rectangle {
id: rectStopNode
color: MoneroComponents.Style.buttonBackgroundColorDisabled
color: MoneroComponents.Style.buttonBackgroundColor
width: btnStopNode.width + 40
height: 24
radius: 2
@ -396,14 +396,18 @@ Rectangle{
font.family: MoneroComponents.Style.fontRegular.name
font.pixelSize: 14 * scaleRatio
font.bold: true
text: qsTr("Stop local node") + translationManager.emptyString
text: (appWindow.daemonRunning ? qsTr("Stop local node") : qsTr("Start daemon")) + translationManager.emptyString
}
MouseArea {
cursorShape: Qt.PointingHandCursor
anchors.fill: parent
onClicked: {
if (appWindow.daemonRunning) {
appWindow.stopDaemon();
} else {
appWindow.startDaemon(persistentSettings.daemonFlags);
}
}
}
}