From 08e3b330e5bcb26c42b356f07937a8fa911ce460 Mon Sep 17 00:00:00 2001 From: Anthony Laibe Date: Wed, 28 Jul 2021 14:53:48 +0200 Subject: [PATCH] fix(@desktop/wallet): correct position of not enough gas error fixes #2714 Increase height of the modal and position the validator to below the previous item --- ui/app/AppLayouts/Wallet/SendModal.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/app/AppLayouts/Wallet/SendModal.qml b/ui/app/AppLayouts/Wallet/SendModal.qml index edecc0a8aa..bfd2e12c19 100644 --- a/ui/app/AppLayouts/Wallet/SendModal.qml +++ b/ui/app/AppLayouts/Wallet/SendModal.qml @@ -15,7 +15,7 @@ ModalPopup { //% "Send" title: qsTrId("command-button-send") - height: 504 + height: 540 property MessageDialog sendingError: MessageDialog { id: sendingError @@ -156,8 +156,8 @@ ModalPopup { } GasValidator { id: gasValidator - anchors.bottom: parent.bottom - anchors.bottomMargin: 8 + anchors.top: gasSelector.bottom + anchors.topMargin: 8 selectedAccount: selectFromAccount.selectedAccount selectedAmount: parseFloat(txtAmount.selectedAmount) selectedAsset: txtAmount.selectedAsset