From 9fa2b268977d9a5a622407ac909bd0d8f02b1519 Mon Sep 17 00:00:00 2001 From: Nino van Hooff Date: Wed, 18 Sep 2019 11:06:17 +0200 Subject: [PATCH] Styling: do not use thick_lining for selected tool icons. Affects Per Object Settings and rotate Lay Flat CURA-6683 --- resources/themes/cura-light/styles.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/themes/cura-light/styles.qml b/resources/themes/cura-light/styles.qml index f2361a8604..daf06ac6af 100755 --- a/resources/themes/cura-light/styles.qml +++ b/resources/themes/cura-light/styles.qml @@ -240,7 +240,7 @@ QtObject } Behavior on color { ColorAnimation { duration: 50; } } - border.width: (control.hasOwnProperty("needBorder") && control.needBorder) ? (control.checked ? Theme.getSize("thick_lining").width : Theme.getSize("default_lining").width) : 0 + border.width: (control.hasOwnProperty("needBorder") && control.needBorder) ? Theme.getSize("default_lining").width : 0 border.color: control.checked ? Theme.getColor("icon") : Theme.getColor("lining") } }