Fix T50958: `template_ID_preview` is crashing the blender's UI from branch 2.8

So apparently ID pointer is allowed to be NULL here.
This commit is contained in:
Julian Eisel 2017-03-16 16:04:20 +01:00
parent e2df9ab386
commit 7eecc2e1c4
Notes: blender-bot 2023-07-10 10:12:37 +02:00
Referenced by issue #50958, `template_ID_preview` is crashing the blender's UI from branch 2.8
1 changed files with 2 additions and 1 deletions

View File

@ -429,7 +429,8 @@ static void template_ID(
but = uiDefBlockButN(block, id_search_menu, MEM_dupallocN(template), "", 0, 0, width, height,
TIP_(template_id_browse_tip(type)));
if (use_preview_icon) {
ui_def_but_icon(but, ui_id_icon_get(C, id, use_big_size), UI_HAS_ICON | UI_BUT_ICON_PREVIEW);
int icon = id ? ui_id_icon_get(C, id, use_big_size) : RNA_struct_ui_icon(type);
ui_def_but_icon(but, icon, UI_HAS_ICON | UI_BUT_ICON_PREVIEW);
}
else {
ui_def_but_icon(but, RNA_struct_ui_icon(type), UI_HAS_ICON);