From 42b8e87d0035c83510de79633efb6def15b9bb61 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Mon, 21 Aug 2017 10:50:36 +0200 Subject: [PATCH] Make opacity of print monitor themeable The new dark design specifies a colour for the print monitor overlay that is darker than what would be attainable with the default 75% opacity. So I'm making it 100% opacity (but still with a fade, so we need the opacity) and let the theme specify what opacity it wants. Contributes to issue CURA-4148. --- resources/qml/Cura.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/Cura.qml b/resources/qml/Cura.qml index 85b17e28a2..35048925eb 100755 --- a/resources/qml/Cura.qml +++ b/resources/qml/Cura.qml @@ -447,7 +447,7 @@ UM.MainWindow right: sidebar.left } visible: opacity > 0 - opacity: base.showPrintMonitor ? 0.75 : 0 + opacity: base.showPrintMonitor ? 1 : 0 Behavior on opacity { NumberAnimation { duration: 100; } }