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.
This commit is contained in:
2025-12-10 10:36:36 +01:00
parent 24b64abc4e
commit 701f5ba1b1

View File

@@ -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