From 485ce22ca702f1ecac0b3dcd194f894409e648cf Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Wed, 25 Jun 2025 17:46:00 +0500 Subject: [PATCH] bim.select_all_sheets - fix a typo --- src/bonsai/bonsai/bim/module/drawing/operator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bonsai/bonsai/bim/module/drawing/operator.py b/src/bonsai/bonsai/bim/module/drawing/operator.py index 1f4360eb6a..57b1981e2c 100644 --- a/src/bonsai/bonsai/bim/module/drawing/operator.py +++ b/src/bonsai/bonsai/bim/module/drawing/operator.py @@ -1734,7 +1734,7 @@ class OpenLayout(bpy.types.Operator, tool.Ifc.Operator): class SelectAllSheets(bpy.types.Operator): bl_idname = "bim.select_all_sheets" - bl_label = "Select All Sheetss" + bl_label = "Select All Sheets" view: bpy.props.StringProperty() bl_description = "Select all sheets in the sheet list.\n\n" + "SHIFT+CLICK to deselect all sheets" select_all: bpy.props.BoolProperty(name="Open All", default=True, options={"SKIP_SAVE"})