From cfd8044cb3b039b3a310f84b87e04b7dbdd774bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Perdig=C3=A3o?= Date: Mon, 19 Aug 2024 13:53:27 -0300 Subject: [PATCH] Fixed bug related to pressing shift for plane selection --- src/bonsai/bonsai/bim/module/project/operator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bonsai/bonsai/bim/module/project/operator.py b/src/bonsai/bonsai/bim/module/project/operator.py index fb9f8ea5c0..a8590cf9f3 100644 --- a/src/bonsai/bonsai/bim/module/project/operator.py +++ b/src/bonsai/bonsai/bim/module/project/operator.py @@ -2396,7 +2396,7 @@ class MeasureTool(bpy.types.Operator): PolylineDecorator.set_input_panel(self.input_panel, self.input_type) tool.Blender.update_viewport() - if event.value == "RELEASE" and event.type in self.input_options and not event.shift: + if event.value == "PRESS" and event.type in self.input_options and not event.shift: self.recalculate_inputs(context) self.is_input_on = True self.input_type = event.type