From a7884cf04f8fc1319bda3057faf94dbd86d32c5f Mon Sep 17 00:00:00 2001 From: Anthony Laibe Date: Tue, 13 Dec 2022 14:42:52 +0100 Subject: [PATCH] feat(@wallet): re-org wallet footer fixes #8600 --- .../AppLayouts/Wallet/panels/WalletFooter.qml | 18 +++++++++--------- .../Wallet/popups/CryptoServicesModal.qml | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/ui/app/AppLayouts/Wallet/panels/WalletFooter.qml b/ui/app/AppLayouts/Wallet/panels/WalletFooter.qml index bd0adf7f2f..27e6198973 100644 --- a/ui/app/AppLayouts/Wallet/panels/WalletFooter.qml +++ b/ui/app/AppLayouts/Wallet/panels/WalletFooter.qml @@ -46,15 +46,6 @@ Rectangle { } } - StatusFlatButton { - id: buySellBtn - icon.name: "token" - text: qsTr("Buy / Sell") - onClicked: function () { - Global.openPopup(buySellModal); - } - } - StatusFlatButton { id: bridgeBtn icon.name: "bridge" @@ -64,6 +55,15 @@ Rectangle { sendModal.open() } } + + StatusFlatButton { + id: buySellBtn + icon.name: "token" + text: qsTr("Buy") + onClicked: function () { + Global.openPopup(buySellModal); + } + } } Component { diff --git a/ui/app/AppLayouts/Wallet/popups/CryptoServicesModal.qml b/ui/app/AppLayouts/Wallet/popups/CryptoServicesModal.qml index 05c1ccc879..2b7c3c55cf 100644 --- a/ui/app/AppLayouts/Wallet/popups/CryptoServicesModal.qml +++ b/ui/app/AppLayouts/Wallet/popups/CryptoServicesModal.qml @@ -16,7 +16,7 @@ StatusModal { id: cryptoServicesPopupRoot height: 400 - header.title: qsTr("Buy / Sell crypto") + header.title: qsTr("Buy crypto") anchors.centerIn: parent Loader {