Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Craddock <nzcraddock@gmail.com>2020-11-18 04:49:33 +0300
committerNathan Craddock <nzcraddock@gmail.com>2020-11-18 05:51:14 +0300
commita352baccc399378333c4352ed83772b49f7ba852 (patch)
tree5ea69e8e141e7a54b7f59827663bdd2eab0e4d7d
parenta3833abe2c507472f72f2d633ebcf8a0c43697cb (diff)
Fix grease pencil draw mode icon color in outliner
ICON_GREASEPENCIL was defined as an object data icon when it was used as a mode icon. This caused it to draw green in the outliner.
-rw-r--r--source/blender/editors/include/UI_icons.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/include/UI_icons.h b/source/blender/editors/include/UI_icons.h
index d99ecf2fd56..b7eb5cab7f9 100644
--- a/source/blender/editors/include/UI_icons.h
+++ b/source/blender/editors/include/UI_icons.h
@@ -263,7 +263,7 @@ DEF_ICON(LIBRARY_DATA_BROKEN)
DEF_ICON(BOIDS)
DEF_ICON(STRANDS)
DEF_ICON(LIBRARY_DATA_INDIRECT)
-DEF_ICON_OBJECT_DATA(GREASEPENCIL)
+DEF_ICON(GREASEPENCIL)
DEF_ICON_SHADING(LINE_DATA)
DEF_ICON(LIBRARY_DATA_OVERRIDE)
DEF_ICON(GROUP_BONE)