From 96824dbb9105b09f0f4647c136a493d72821e6ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Tinkl?= Date: Wed, 7 Aug 2024 17:20:21 +0200 Subject: [PATCH] feat(Wallet): Display the "Buy" button everywhere - display the "Buy" button in every context in the wallet footer except when viewing a collectible's details Fixes #15813 --- ui/app/AppLayouts/Wallet/panels/WalletFooter.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Wallet/panels/WalletFooter.qml b/ui/app/AppLayouts/Wallet/panels/WalletFooter.qml index 417b467768..48ef9191a3 100644 --- a/ui/app/AppLayouts/Wallet/panels/WalletFooter.qml +++ b/ui/app/AppLayouts/Wallet/panels/WalletFooter.qml @@ -69,7 +69,7 @@ Rectangle { && !root.walletStore.showAllAccounts && !d.hideCollectibleTransferActions - readonly property bool buyActionAvailable: !root.isCommunityOwnershipTransfer && !root.walletStore.showAllAccounts + readonly property bool buyActionAvailable: !isCollectibleViewed readonly property bool swapActionAvailable: Global.featureFlags.swapEnabled && !walletStore.overview.isWatchOnlyAccount && walletStore.overview.canSend && !d.hideCollectibleTransferActions