From c21ddd99ce67798c59280b4997bc4db28c27e7a5 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Tue, 4 Mar 2025 14:54:12 +0100 Subject: [PATCH] Margin wasn't wide enough to see that it's a tree. CURA-12441 --- resources/qml/Preferences/SettingVisibilityItem.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/Preferences/SettingVisibilityItem.qml b/resources/qml/Preferences/SettingVisibilityItem.qml index 07255306a5..52b06b3dee 100644 --- a/resources/qml/Preferences/SettingVisibilityItem.qml +++ b/resources/qml/Preferences/SettingVisibilityItem.qml @@ -11,7 +11,7 @@ Item // Use the depth of the model to move the item, but also leave space for the visibility / enabled exclamation mark. // Align checkbox with SettingVisibilityCategory icon with + 5 - x: definition ? definition.depth * UM.Theme.getSize("narrow_margin").width : UM.Theme.getSize("default_margin").width + x: definition ? definition.depth * UM.Theme.getSize("wide_margin").width : UM.Theme.getSize("default_margin").width UM.TooltipArea {