From 608257eeaab3b105c8e2b0a5a06aa0c6420d4144 Mon Sep 17 00:00:00 2001 From: reionwong Date: Wed, 16 Jun 2021 14:13:45 +0800 Subject: [PATCH] Fix popup tips background opacity --- qml/main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qml/main.qml b/qml/main.qml index f3e55f2..f33595f 100644 --- a/qml/main.qml +++ b/qml/main.qml @@ -75,7 +75,7 @@ Item { FishUI.PopupTips { id: popupTips backgroundColor: FishUI.Theme.backgroundColor - backgroundOpacity: FishUI.Theme.darkMode ? 0.3 : 0.4 + backgroundOpacity: windowHelper.compositing ? FishUI.Theme.darkMode ? 0.3 : 0.4 : 1 } GridLayout {