Fix bug where disabling item mode didn't also quit from the boolean editing mode

These two modes should be tied together.
This commit is contained in:
Dion Moult
2025-02-12 15:31:56 +11:00
parent 24b4be3ea1
commit 1e08a71c5a
+1
View File
@@ -1805,6 +1805,7 @@ class Geometry(bonsai.core.tool.Geometry):
props.mode = "OBJECT"
props.is_changing_mode = False
props.representation_obj = None
bpy.context.scene.BIMBooleanProperties.is_editing = False
@classmethod
def edit_meshlike_item(cls, obj: bpy.types.Object) -> None: