Skip to content

Commit 351d497

Browse files
committed
Merge branch 'Release' into Development
2 parents 9def2be + b1a85c5 commit 351d497

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

BlenderMalt/MaltProperties.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,9 @@ def resize():
376376
if ui_key in rna_prop and rna_prop[ui_key] is not None:
377377
ui_properties[ui_key] = rna_prop[ui_key]
378378

379-
self.id_properties_ui(key).update(**ui_properties)
379+
ui = self.id_properties_ui(key)
380+
ui.clear()
381+
ui.update(**ui_properties)
380382

381383
# Force a depsgraph update.
382384
# Otherwise these won't be available inside scene_eval

0 commit comments

Comments
 (0)