mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-10 21:04:32 +00:00
settings-node: implement correct 'Start/Stop daemon' button logic
This commit is contained in:
parent
6eb8c8c9d6
commit
808ecf57ac
1 changed files with 7 additions and 3 deletions
|
@ -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: {
|
||||
appWindow.stopDaemon();
|
||||
if (appWindow.daemonRunning) {
|
||||
appWindow.stopDaemon();
|
||||
} else {
|
||||
appWindow.startDaemon(persistentSettings.daemonFlags);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue