From 53fd47e8db8206c43ad563697e744fd591c0f0c8 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Tue, 29 Jun 2021 16:26:59 +0200 Subject: [PATCH] Set opacity of disabled extruder text CURA-8011 --- resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml b/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml index ad4911404a..b088abc830 100644 --- a/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml +++ b/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml @@ -70,7 +70,7 @@ Cura.ExpandablePopup font: UM.Theme.getFont("default") color: UM.Theme.getColor("text") renderType: Text.NativeRendering - + opacity: model.enabled ? 1 : 0.4 anchors { top: extruderIcon.top @@ -92,7 +92,7 @@ Cura.ExpandablePopup font: UM.Theme.getFont("default_bold") color: UM.Theme.getColor("text") renderType: Text.NativeRendering - + opacity: model.enabled ? 1 : 0.4 anchors { left: extruderIcon.right