diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2021-07-26 15:35:13 -0400 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2021-07-26 15:35:13 -0400 |
| commit | 3f4cedea545a14b4103b0c3030acc92a39ce1077 (patch) | |
| tree | be13de977b65b5696a6724d1dfabc6c0ed95e600 /components | |
| parent | 4376880b46941a153dc4e088f38515506fe7fae1 (diff) | |
| parent | 284caf83f6b8f33600cd77113aac28e52c041eb0 (diff) | |
| download | monzero-gui-3f4cedea545a14b4103b0c3030acc92a39ce1077.tar.gz monzero-gui-3f4cedea545a14b4103b0c3030acc92a39ce1077.tar.xz monzero-gui-3f4cedea545a14b4103b0c3030acc92a39ce1077.zip | |
Merge pull request #3630
284caf8 RemoteNodeList: truncate long addresses (rating89us)
Diffstat (limited to 'components')
| -rw-r--r-- | components/RemoteNodeList.qml | 2 |
1 files changed, 2 insertions, 0 deletions
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 { |
