From 284caf83f6b8f33600cd77113aac28e52c041eb0 Mon Sep 17 00:00:00 2001 From: rating89us <45968869+rating89us@users.noreply.github.com> Date: Mon, 19 Jul 2021 11:29:53 +0200 Subject: [PATCH] RemoteNodeList: truncate long addresses --- components/RemoteNodeList.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/RemoteNodeList.qml b/components/RemoteNodeList.qml index ffbce57d..5d3b14fa 100644 --- a/components/RemoteNodeList.qml +++ b/components/RemoteNodeList.qml @@ -84,6 +84,7 @@ ColumnLayout { MoneroComponents.TextPlain { id: addressText + width: parent.width - trustedDaemonCheckMark.width color: index === remoteNodesModel.selected ? MoneroComponents.Style.defaultFontColor : MoneroComponents.Style.dimmedFontColor anchors.verticalCenter: parent.verticalCenter anchors.left: parent.left @@ -91,6 +92,7 @@ ColumnLayout { font.pixelSize: 16 text: address themeTransition: false + elide: Text.ElideMiddle } MoneroComponents.Label {