From 3cf732cb5116beae84f2b287659c342c8ad79305 Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Tue, 21 Mar 2023 09:44:53 +0100 Subject: [PATCH] qml: introduction text bottom margins in RbF bump fee and cancel dialogs --- electrum/gui/qml/components/RbfBumpFeeDialog.qml | 1 + electrum/gui/qml/components/RbfCancelDialog.qml | 1 + 2 files changed, 2 insertions(+) diff --git a/electrum/gui/qml/components/RbfBumpFeeDialog.qml b/electrum/gui/qml/components/RbfBumpFeeDialog.qml index b1d406c3d..9d2c514c1 100644 --- a/electrum/gui/qml/components/RbfBumpFeeDialog.qml +++ b/electrum/gui/qml/components/RbfBumpFeeDialog.qml @@ -47,6 +47,7 @@ ElDialog { Label { Layout.columnSpan: 2 Layout.fillWidth: true + Layout.bottomMargin: constants.paddingLarge text: qsTr('Increase your transaction\'s fee to improve its position in the mempool') wrapMode: Text.Wrap } diff --git a/electrum/gui/qml/components/RbfCancelDialog.qml b/electrum/gui/qml/components/RbfCancelDialog.qml index e083a04e5..899c10dc1 100644 --- a/electrum/gui/qml/components/RbfCancelDialog.qml +++ b/electrum/gui/qml/components/RbfCancelDialog.qml @@ -44,6 +44,7 @@ ElDialog { Label { Layout.columnSpan: 2 Layout.fillWidth: true + Layout.bottomMargin: constants.paddingLarge text: qsTr('Cancel an unconfirmed RBF transaction by double-spending its inputs back to your wallet with a higher fee.') wrapMode: Text.Wrap }