Fixed bug related to pressing shift for plane selection

This commit is contained in:
Bruno Perdigão
2024-08-19 13:53:27 -03:00
committed by Bruno Perdigão
parent 2d7866570e
commit cfd8044cb3
@@ -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