mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-09 09:21:46 +00:00
Fixed bug related to pressing shift for plane selection
This commit is contained in:
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
|
||||
|
||||
Reference in New Issue
Block a user