From 701f5ba1b19e42bbdf499a3f573ada35a71555ba Mon Sep 17 00:00:00 2001 From: Davide Grilli Date: Wed, 10 Dec 2025 10:36:36 +0100 Subject: [PATCH] Fix(QML): Resolve text overlap in transaction input display Split transaction input display into two rows to prevent overlap between short_id and value fields on Android QML interface. - First row: input index and short_id (with text eliding) - Second row: value amount and unit (indented) Fixes readability issues on small screens and long identifiers. --- electrum/gui/qml/components/controls/TxInput.qml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/electrum/gui/qml/components/controls/TxInput.qml b/electrum/gui/qml/components/controls/TxInput.qml index b876bc4aa..e93f155ad 100644 --- a/electrum/gui/qml/components/controls/TxInput.qml +++ b/electrum/gui/qml/components/controls/TxInput.qml @@ -34,7 +34,14 @@ TextHighlightPane { Layout.fillWidth: true text: model.short_id font.family: FixedFont + wrapMode: Text.NoWrap + elide: Text.ElideRight } + } + + RowLayout { + Layout.fillWidth: true + Layout.leftMargin: constants.paddingLarge Label { id: txin_value text: model.value != undefined