diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2021-07-26 15:37:26 -0400 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2021-07-26 15:37:26 -0400 |
| commit | a13e4b622c6352d3d15d0526209a8e38c98bd3df (patch) | |
| tree | 7f1ada5ed9a8f07ebc6ee1f7635e226728684547 /components | |
| parent | 56a17e0a85e162ff25dd44a1a99c4cee01facaa4 (diff) | |
| parent | 7805430f4f8a5d4c4db697d734486fbdae5fa2df (diff) | |
| download | monzero-gui-a13e4b622c6352d3d15d0526209a8e38c98bd3df.tar.gz monzero-gui-a13e4b622c6352d3d15d0526209a8e38c98bd3df.tar.xz monzero-gui-a13e4b622c6352d3d15d0526209a8e38c98bd3df.zip | |
Merge pull request #3640
7805430 Account, Receive, RemoteNodeList, SettingsNode: selection indicator in lists (rating89us)
Diffstat (limited to 'components')
| -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 5d3b14fa..61bc7dac 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 |
