From dd25572c280eeede3e06598be5f016afc5d6781c Mon Sep 17 00:00:00 2001 From: Cuteivist Date: Wed, 31 Jul 2024 06:53:43 +0200 Subject: [PATCH] fix(wallet): Constrain token name size to send modal width (#15859) --- .../Wallet/controls/TokenSelectorNew.qml | 20 +++++++++++++++++-- ui/imports/shared/popups/send/SendModal.qml | 2 ++ 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/ui/app/AppLayouts/Wallet/controls/TokenSelectorNew.qml b/ui/app/AppLayouts/Wallet/controls/TokenSelectorNew.qml index 4c7a32ba25..d787628184 100644 --- a/ui/app/AppLayouts/Wallet/controls/TokenSelectorNew.qml +++ b/ui/app/AppLayouts/Wallet/controls/TokenSelectorNew.qml @@ -22,6 +22,8 @@ Control { /** Expected model structure: see TokenSelectorPanel::collectiblesModel **/ property alias collectiblesModel: tokenSelectorPanel.collectiblesModel + readonly property bool isTokenSelected: d.isTokenSelected + signal assetSelected(string key) signal collectionSelected(string key) signal collectibleSelected(string key) @@ -90,8 +92,10 @@ Control { RowLayout { spacing: Style.current.halfPadding + width: parent.width StatusRoundedImage { + id: tokenSelectorIcon objectName: "tokenSelectorIcon" Layout.preferredWidth: 20 Layout.preferredHeight: 20 @@ -102,12 +106,24 @@ Control { objectName: "tokenSelectorContentItemText" font.pixelSize: 28 color: root.hovered ? Theme.palette.blue : Theme.palette.darkBlue + Layout.maximumWidth: parent.width - (tokenSelectorIcon.width + comboboxIndicator.width + parent.spacing * 2) + elide: Text.ElideRight + Layout.alignment: Qt.AlignLeft text: d.currentName } - StatusComboboxIndicator { - color: Theme.palette.primaryColor1 + Item { + // Encapsulated into the item to not resize the icon + Layout.fillWidth: true + Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter + StatusComboboxIndicator { + id: comboboxIndicator + anchors.left: parent.left + anchors.verticalCenter: parent.verticalCenter + + color: Theme.palette.primaryColor1 + } } } } diff --git a/ui/imports/shared/popups/send/SendModal.qml b/ui/imports/shared/popups/send/SendModal.qml index f2433bf06f..0d0e21f640 100644 --- a/ui/imports/shared/popups/send/SendModal.qml +++ b/ui/imports/shared/popups/send/SendModal.qml @@ -337,6 +337,7 @@ StatusDialog { RowLayout { spacing: 8 Layout.preferredHeight: 44 + Layout.maximumWidth: parent.width HeaderTitleText { id: modalHeader @@ -354,6 +355,7 @@ StatusDialog { assetsModel: assetsAdaptor.outputAssetsModel collectiblesModel: collectiblesAdaptorLoader.active ? collectiblesAdaptorLoader.item.model : null + Layout.fillWidth: isTokenSelected TokenSelectorViewAdaptor { id: assetsAdaptor