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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user