Fix #108737: Python error in Property Editor search menu #108795

Merged
Philipp Oeser merged 2 commits from lichtwerk/blender:108737 into blender-v3.6-release 2023-06-09 15:07:06 +02:00

View File

@ -44,8 +44,8 @@ def geometry_modifier_poll(context):
def get_context_modifier(context):
area = context.area
if (area is not None) and (area.type == 'PROPERTIES'):
# Context only has a 'modifier' attribute in the modifier extra operators dropdown.
if hasattr(context, 'modifier'):

Missing .

Missing `.`
modifier = context.modifier
else:
ob = context.object