From a3833abe2c507472f72f2d633ebcf8a0c43697cb Mon Sep 17 00:00:00 2001 From: Nathan Craddock Date: Tue, 17 Nov 2020 19:01:44 -0700 Subject: 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. --- source/blender/editors/interface/interface_icons.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender') 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: -- cgit v1.2.3