From 7805430f4f8a5d4c4db697d734486fbdae5fa2df Mon Sep 17 00:00:00 2001 From: rating89us <45968869+rating89us@users.noreply.github.com> Date: Fri, 23 Jul 2021 07:47:48 +0200 Subject: Account, Receive, RemoteNodeList, SettingsNode: selection indicator in lists --- components/RemoteNodeList.qml | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'components/RemoteNodeList.qml') diff --git a/components/RemoteNodeList.qml b/components/RemoteNodeList.qml index ffbce57d..0cb64692 100644 --- a/components/RemoteNodeList.qml +++ b/components/RemoteNodeList.qml @@ -61,6 +61,15 @@ ColumnLayout { Layout.fillWidth: true 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 -- cgit v1.2.3