From 6944c247ca06fcb023d2e0b4456a600c244430cd Mon Sep 17 00:00:00 2001 From: Bruno Postle Date: Sun, 24 Mar 2024 10:31:47 +0000 Subject: [PATCH] Drawings panel: fix select_all_drawings operator Previously it always deselected all drawings, now works as advertised --- src/blenderbim/blenderbim/bim/module/drawing/operator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blenderbim/blenderbim/bim/module/drawing/operator.py b/src/blenderbim/blenderbim/bim/module/drawing/operator.py index 9702b9188a..4798af6f37 100644 --- a/src/blenderbim/blenderbim/bim/module/drawing/operator.py +++ b/src/blenderbim/blenderbim/bim/module/drawing/operator.py @@ -1345,7 +1345,7 @@ class SelectAllDrawings(bpy.types.Operator): bl_label = "Select All Drawings" view: bpy.props.StringProperty() bl_description = "Select all drawings in the drawing list.\n\n" + "SHIFT+CLICK to deselect all drawings" - select_all: bpy.props.BoolProperty(name="Open All", default=False, options={"SKIP_SAVE"}) + select_all: bpy.props.BoolProperty(name="Open All", default=True, options={"SKIP_SAVE"}) def invoke(self, context, event): # deselect all drawings on shift+click