Skip to content

Commit

Permalink
Merge branch 'Release' into Development
Browse files Browse the repository at this point in the history
  • Loading branch information
pragma37 committed Sep 24, 2024
2 parents 9def2be + b1a85c5 commit 351d497
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion BlenderMalt/MaltProperties.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,9 @@ def resize():
if ui_key in rna_prop and rna_prop[ui_key] is not None:
ui_properties[ui_key] = rna_prop[ui_key]

self.id_properties_ui(key).update(**ui_properties)
ui = self.id_properties_ui(key)
ui.clear()
ui.update(**ui_properties)

# Force a depsgraph update.
# Otherwise these won't be available inside scene_eval
Expand Down

0 comments on commit 351d497

Please sign in to comment.