See #5888. Debugging undos is hard, so include the operator name in the event log.

This commit is contained in:
Dion Moult
2025-02-18 16:31:36 +11:00
parent 645298e9d6
commit c79020aeab
+1 -1
View File
@@ -479,7 +479,7 @@ class IfcStore:
@staticmethod
def begin_transaction(operator: tool.Ifc.Operator) -> None:
IfcStore.current_transaction = str(uuid.uuid4())
IfcStore.current_transaction = str(uuid.uuid4()) + operator.__class__.__name__
operator.transaction_key = IfcStore.current_transaction
@staticmethod