fix [#26510] Crash when changing an object's property value

This commit is contained in:
Campbell Barton 2011-03-18 06:36:57 +00:00
parent 2c13a6fab8
commit 1fec2d179f

@ -763,6 +763,10 @@ class WM_OT_properties_edit(bpy.types.Operator):
prop_ui['description'] = self.description
# otherwise existing buttons which reference freed
# memory may crash blender [#26510]
context.area.tag_redraw()
return {'FINISHED'}
def invoke(self, context, event):