aboutsummaryrefslogtreecommitdiff
path: root/components/RemoteNodeList.qml
diff options
context:
space:
mode:
authorrating89us <45968869+rating89us@users.noreply.github.com>2021-07-23 07:47:48 +0200
committerrating89us <rating89us@rating89us.com>2021-07-23 08:13:01 +0200
commit7805430f4f8a5d4c4db697d734486fbdae5fa2df (patch)
tree1d1cdcba582ca7bee5f8be9a42c7947357299042 /components/RemoteNodeList.qml
parentb6682330a6f87051c523c05b9b653eb494760003 (diff)
downloadmonzero-gui-7805430f4f8a5d4c4db697d734486fbdae5fa2df.tar.gz
monzero-gui-7805430f4f8a5d4c4db697d734486fbdae5fa2df.tar.xz
monzero-gui-7805430f4f8a5d4c4db697d734486fbdae5fa2df.zip
Account, Receive, RemoteNodeList, SettingsNode: selection indicator in lists
Diffstat (limited to 'components/RemoteNodeList.qml')
-rw-r--r--components/RemoteNodeList.qml9
1 files changed, 9 insertions, 0 deletions
diff --git a/components/RemoteNodeList.qml b/components/RemoteNodeList.qml
index ffbce57d..0cb64692 100644
--- a/components/RemoteNodeList.qml
+++ b/components/RemoteNodeList.qml
@@ -62,6 +62,15 @@ ColumnLayout {
color: itemMouseArea.containsMouse || trustedDaemonCheckMark.labelMouseArea.containsMouse || index === remoteNodesModel.selected ? MoneroComponents.Style.titleBarButtonHoverColor : "transparent"
Rectangle {
+ visible: index === remoteNodesModel.selected
+ Layout.fillHeight: true
+ anchors.top: parent.top
+ anchors.bottom: parent.bottom
+ color: "darkgrey"
+ width: 2
+ }
+
+ Rectangle {
color: MoneroComponents.Style.appWindowBorderColor
anchors.right: parent.right
anchors.left: parent.left