Skip to content

Commit

Permalink
Merge pull request monero-project#1388
Browse files Browse the repository at this point in the history
78e0ae1 use radio buttons in daemon wizard
  • Loading branch information
luigi1111 committed May 11, 2018
2 parents b6a7836 + 78e0ae1 commit 06fdf27
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions wizard/WizardDaemonSettings.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 06fdf27

Please sign in to comment.