From f8ce6c65642cc4b1f61441d91070fc8cce2136c2 Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Wed, 10 May 2023 17:39:57 +0200 Subject: [PATCH] qml: small screen fixes --- electrum/gui/qml/components/TxDetails.qml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/electrum/gui/qml/components/TxDetails.qml b/electrum/gui/qml/components/TxDetails.qml index 99409e392..567cfe136 100644 --- a/electrum/gui/qml/components/TxDetails.qml +++ b/electrum/gui/qml/components/TxDetails.qml @@ -87,6 +87,7 @@ Pane { FormattedAmount { visible: !txdetails.isUnrelated + Layout.preferredWidth: 1 Layout.fillWidth: true amount: txdetails.lnAmount.isEmpty ? txdetails.amount : txdetails.lnAmount } @@ -107,9 +108,12 @@ Pane { } Label { + Layout.preferredWidth: 1 + Layout.fillWidth: true visible: txdetails.feeRateStr != "" text: qsTr('Transaction fee rate') color: Material.accentColor + wrapMode: Text.Wrap } Label {