diff options
| author | rating89us <45968869+rating89us@users.noreply.github.com> | 2021-07-23 07:47:48 +0200 |
|---|---|---|
| committer | rating89us <rating89us@rating89us.com> | 2021-07-23 08:13:01 +0200 |
| commit | 7805430f4f8a5d4c4db697d734486fbdae5fa2df (patch) | |
| tree | 1d1cdcba582ca7bee5f8be9a42c7947357299042 /components/RemoteNodeList.qml | |
| parent | b6682330a6f87051c523c05b9b653eb494760003 (diff) | |
| download | monzero-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.qml | 9 |
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 |
