aboutsummaryrefslogtreecommitdiff
path: root/components/RemoteNodeList.qml
diff options
context:
space:
mode:
Diffstat (limited to 'components/RemoteNodeList.qml')
-rw-r--r--components/RemoteNodeList.qml6
1 files changed, 5 insertions, 1 deletions
diff --git a/components/RemoteNodeList.qml b/components/RemoteNodeList.qml
index cbb2a02e..b46b414a 100644
--- a/components/RemoteNodeList.qml
+++ b/components/RemoteNodeList.qml
@@ -107,8 +107,9 @@ ColumnLayout {
MoneroComponents.Label {
id: trustedDaemonCheckMark
anchors.left: addressText.right
- anchors.leftMargin: 6
+ anchors.leftMargin: 3
anchors.verticalCenter: parent.verticalCenter
+ anchors.verticalCenterOffset: 2
z: itemMouseArea.z + 1
fontSize: 16
fontFamily: FontAwesome.fontFamilySolid
@@ -144,6 +145,9 @@ ColumnLayout {
tooltipLeft: true
onClicked: remoteNodeDialog.edit(remoteNodesModel.get(index), function (remoteNode) {
remoteNodesModel.set(index, remoteNode)
+ if (index === remoteNodesModel.selected) {
+ remoteNodesModel.applyRemoteNode(index)
+ }
})
}