From 7aa2f5f0b8d037d35ffa32d40e235f24c4c1789d Mon Sep 17 00:00:00 2001 From: Simon Edwards Date: Sat, 30 Sep 2017 10:52:34 +0200 Subject: [PATCH] Disable the fade on the monitor blue overlay to prevent the annoying "flash of blue" problem CL-457 CL-468 --- resources/qml/Cura.qml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/resources/qml/Cura.qml b/resources/qml/Cura.qml index 2399fb4395..c157396c7d 100755 --- a/resources/qml/Cura.qml +++ b/resources/qml/Cura.qml @@ -386,7 +386,10 @@ UM.MainWindow visible: opacity > 0 opacity: base.showPrintMonitor ? 1 : 0 - Behavior on opacity { NumberAnimation { duration: 100; } } + // Behavior on opacity { NumberAnimation { duration: 100; } } + + // ^ This has been turned off to prevent the flash of blue when switch from + // Monitor tab to Prepare in combination with a Cura Connect printer. MouseArea { anchors.fill: parent