aboutsummaryrefslogtreecommitdiff
path: root/wizard/WizardDaemonSettings.qml
diff options
context:
space:
mode:
authorstoffu <stoffu@protonmail.ch>2018-01-24 15:16:34 +0900
committerstoffu <stoffu@protonmail.ch>2018-01-30 07:45:08 +0900
commitaf882e87f5cfbd0454b31cf2846615dfb6267cbf (patch)
tree64a9757649b93cd320b4e5a8627aa3af8dc53d37 /wizard/WizardDaemonSettings.qml
parent89ec822ba5d9f9b476237e2b48f4304101263850 (diff)
downloadmonzero-gui-af882e87f5cfbd0454b31cf2846615dfb6267cbf.tar.gz
monzero-gui-af882e87f5cfbd0454b31cf2846615dfb6267cbf.tar.xz
monzero-gui-af882e87f5cfbd0454b31cf2846615dfb6267cbf.zip
rectified visual switch between local node & remote node
Diffstat (limited to 'wizard/WizardDaemonSettings.qml')
-rw-r--r--wizard/WizardDaemonSettings.qml8
1 files changed, 8 insertions, 0 deletions
diff --git a/wizard/WizardDaemonSettings.qml b/wizard/WizardDaemonSettings.qml
index dd41172c..8634f652 100644
--- a/wizard/WizardDaemonSettings.qml
+++ b/wizard/WizardDaemonSettings.qml
@@ -130,6 +130,10 @@ ColumnLayout {
uncheckedIcon: "../images/uncheckedIcon.png"
checked: !appWindow.persistentSettings.useRemoteNode && !isAndroid && !isIOS
visible: !isAndroid && !isIOS
+ onClicked: {
+ checked = true;
+ remoteNode.checked = false;
+ }
}
}
@@ -175,6 +179,10 @@ ColumnLayout {
checkedIcon: "../images/checkedVioletIcon.png"
uncheckedIcon: "../images/uncheckedIcon.png"
checked: appWindow.persistentSettings.useRemoteNode
+ onClicked: {
+ checked = true
+ localNode.checked = false
+ }
}
}