rectified visual switch between local node & remote node

This commit is contained in:
stoffu
2018-01-24 15:16:34 +09:00
parent 89ec822ba5
commit af882e87f5
2 changed files with 12 additions and 4 deletions

View File

@@ -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
}
}
}