From 10a2c50733169f1f5dcf23d43eb49c1e4bf4446e Mon Sep 17 00:00:00 2001 From: Antonio Vazquez Date: Mon, 27 Jun 2022 09:13:29 +0200 Subject: Fix T99178: Console warning using search (F3) in grease pencil draw mode The preview data was not available in this context and need to be checked to avoid the warning. --- release/scripts/startup/bl_ui/properties_grease_pencil_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'release/scripts/startup/bl_ui') diff --git a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py index 8c43186313f..44d82be8ab0 100644 --- a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py +++ b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py @@ -296,7 +296,7 @@ class GPENCIL_MT_material_active(Menu): for slot in ob.material_slots: mat = slot.material - if mat: + if mat and mat.id_data and mat.id_data.preview: icon = mat.id_data.preview.icon_id layout.operator("gpencil.material_set", text=mat.name, icon_value=icon).slot = mat.name -- cgit v1.2.3