From 9d284d9c6ffd2dfc9013b173865b09c603470c90 Mon Sep 17 00:00:00 2001 From: Kostas Karmas Date: Fri, 14 May 2021 10:42:37 +0200 Subject: [PATCH] Use new icon for "Block support overlap" models in the object menu CURA-8205 --- resources/qml/ObjectItemButton.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/ObjectItemButton.qml b/resources/qml/ObjectItemButton.qml index 2b998e0438..7d8988fde4 100644 --- a/resources/qml/ObjectItemButton.qml +++ b/resources/qml/ObjectItemButton.qml @@ -173,7 +173,7 @@ Button case "infill_mesh": return UM.Theme.getIcon("MeshTypeIntersect"); case "anti_overhang_mesh": - return UM.Theme.getIcon("MeshTypeExclude"); + return UM.Theme.getIcon("BlockSupportOverlaps"); } return ""; }