aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--wizard/WizardDaemonSettings.qml14
1 files changed, 7 insertions, 7 deletions
diff --git a/wizard/WizardDaemonSettings.qml b/wizard/WizardDaemonSettings.qml
index 4ba6e3d8..4303b1a0 100644
--- a/wizard/WizardDaemonSettings.qml
+++ b/wizard/WizardDaemonSettings.qml
@@ -121,11 +121,11 @@ ColumnLayout {
ColumnLayout {
RowLayout {
- CheckBox {
+ RadioButton {
id: localNode
- text: qsTr("Start a node automatically in background or use an already running local node (recommended)") + translationManager.emptyString
- checkedIcon: "../images/checkedBlackIcon.png"
- background: "#FFFFFF"
+ text: qsTr("Start a node automatically in background (recommended)") + translationManager.emptyString
+ checkedColor: Qt.rgba(0, 0, 0, 0.75)
+ borderColor: Qt.rgba(0, 0, 0, 0.45)
fontColor: "#4A4646"
fontSize: 16 * scaleRatio
checked: !appWindow.persistentSettings.useRemoteNode && !isAndroid && !isIOS
@@ -205,12 +205,12 @@ ColumnLayout {
}
RowLayout {
- CheckBox {
+ RadioButton {
id: remoteNode
text: qsTr("Connect to a remote node") + translationManager.emptyString
- checkedIcon: "../images/checkedBlackIcon.png"
+ checkedColor: Qt.rgba(0, 0, 0, 0.75)
+ borderColor: Qt.rgba(0, 0, 0, 0.45)
Layout.topMargin: 20 * scaleRatio
- background: "#FFFFFF"
fontColor: "#4A4646"
fontSize: 16 * scaleRatio
checked: appWindow.persistentSettings.useRemoteNode