Browse Source

fix topbar colors in monitor mode for UM3 networking

ChrisTerBeke 7 years ago
parent
commit
edc10e0630

+ 0 - 2
resources/qml/Topbar.qml

@@ -18,8 +18,6 @@ Rectangle
     height: UM.Theme.getSize("sidebar_header").height
     color: base.monitoringPrint ? UM.Theme.getColor("topbar_background_color_monitoring") : UM.Theme.getColor("topbar_background_color")
 
-    Behavior on color { ColorAnimation { duration: 100; } }
-
     property bool printerConnected: Cura.MachineManager.printerOutputDevices.length != 0
     property bool printerAcceptsCommands: printerConnected && Cura.MachineManager.printerOutputDevices[0].acceptsCommands
     property bool monitoringPrint: false

+ 1 - 1
resources/themes/cura-dark/theme.json

@@ -16,7 +16,7 @@
         "secondary": [241, 242, 242, 255],
 
         "topbar_background_color": [0, 0, 0, 0],
-        "topbar_background_color_monitoring": [0, 0, 0, 0],
+        "topbar_background_color_monitoring": [31, 36, 39, 255],
 
         "topbar_button_text_active": [255, 255, 255, 255],
         "topbar_button_text_inactive": [128, 128, 128, 255],

+ 1 - 1
resources/themes/cura-light/theme.json

@@ -68,7 +68,7 @@
         "secondary": [245, 245, 245, 255],
 
         "topbar_background_color": [255, 255, 255, 0],
-        "topbar_background_color_monitoring": [255, 255, 255, 0],
+        "topbar_background_color_monitoring": [255, 255, 255, 255],
 
         "topbar_button_text_active": [0, 0, 0, 255],
         "topbar_button_text_inactive": [128, 128, 128, 255],