BIM: fix lock removal of Sill property

This commit is contained in:
Furgo
2025-12-21 01:25:28 +01:00
committed by Max Wilfinger
parent ab16aa0161
commit e9d2822add

View File

@@ -358,7 +358,7 @@ class _Window(ArchComponent.Component):
# Sill -> SillHeight property rename migration
if hasattr(obj, "Sill"):
obj.SillHeight = obj.Sill
obj.setPropertyStatus(prop, "-LockDynamic")
obj.setPropertyStatus("Sill", "-LockDynamic")
obj.removeProperty("Sill")
def loads(self, state):