From e9df885b260847c195ba60691e681855afee93d0 Mon Sep 17 00:00:00 2001 From: selsta Date: Tue, 30 Apr 2019 02:34:27 +0200 Subject: [PATCH] Merchant: fix title bar with custom decorations turned off --- main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.qml b/main.qml index 94c4a0d1..9c60d8aa 100644 --- a/main.qml +++ b/main.qml @@ -1737,7 +1737,7 @@ ApplicationWindow { MoneroMerchant.MerchantTitlebar { id: titleBarOrange - visible: middlePanel.state === "Merchant" + visible: persistentSettings.customDecorations && middlePanel.state === "Merchant" anchors.left: parent.left anchors.right: parent.right onCloseClicked: appWindow.close();