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 05:01:44 +0300
committerNathan Craddock <nzcraddock@gmail.com>2020-11-18 05:49:28 +0300
commita3833abe2c507472f72f2d633ebcf8a0c43697cb (patch)
treeada2d217af47c859f7cc2b9cbf600efd2e7b1fe2 /source/blender
parente580c188533ca12832538d5b85665bcef6987f36 (diff)
Fix wrong grease pencil datablock icon in file browser
The datablock shown in the file browser was the draw mode icon rather than the datablock icon.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/editors/interface/interface_icons.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/interface/interface_icons.c b/source/blender/editors/interface/interface_icons.c
index 68d837ba4b4..90f5172f6ec 100644
--- a/source/blender/editors/interface/interface_icons.c
+++ b/source/blender/editors/interface/interface_icons.c
@@ -2263,7 +2263,7 @@ int UI_icon_from_idcode(const int idcode)
case ID_CU:
return ICON_CURVE_DATA;
case ID_GD:
- return ICON_GREASEPENCIL;
+ return ICON_OUTLINER_DATA_GREASEPENCIL;
case ID_GR:
return ICON_OUTLINER_COLLECTION;
case ID_IM: