(scene: bpy.types.Scene)
| 246 | |
| 247 | @persistent |
| 248 | def undo_post(scene: bpy.types.Scene) -> None: |
| 249 | props = tool.Blender.get_bim_props() |
| 250 | if IfcStore.last_transaction != props.last_transaction: |
| 251 | IfcStore.last_transaction = props.last_transaction |
| 252 | IfcStore.undo(until_key=props.last_transaction) |
| 253 | refresh_ui_data() |
| 254 | tool.Ifc.rebuild_element_maps() |
| 255 | |
| 256 | |
| 257 | @persistent |
nothing calls this directly
no test coverage detected