From 3bcb735a436edb8e2c58c510b597b5b3fd89bea0 Mon Sep 17 00:00:00 2001 From: Leon Schittek Date: Sun, 19 Feb 2023 20:10:36 +0100 Subject: [PATCH] Fix #82936: Make Geometry Nodes modifier icon blue in outliner In the outliner, the icons for modifiers are tinted blue. This didn't work for the geometry nodes modifier icon. Defining the icon with the macro `DEF_ICON_MODIFIER` also defines the appropriate theme color so it's now also tinted blue when drawn in the outliner like the other modifier icons. --- source/blender/editors/include/UI_icons.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/include/UI_icons.h b/source/blender/editors/include/UI_icons.h index 31c766e95f2..6e0edeace6a 100644 --- a/source/blender/editors/include/UI_icons.h +++ b/source/blender/editors/include/UI_icons.h @@ -164,7 +164,7 @@ DEF_ICON(NLA) DEF_ICON(PREFERENCES) DEF_ICON(TIME) DEF_ICON(NODETREE) -DEF_ICON(GEOMETRY_NODES) +DEF_ICON_MODIFIER(GEOMETRY_NODES) DEF_ICON(CONSOLE) DEF_ICON_BLANK(183) DEF_ICON(TRACKER) -- 2.30.2