diff --git a/src/bonsai/bonsai/bim/module/model/wall.py b/src/bonsai/bonsai/bim/module/model/wall.py index 87c6283ad6..d8c4fb13cc 100644 --- a/src/bonsai/bonsai/bim/module/model/wall.py +++ b/src/bonsai/bonsai/bim/module/model/wall.py @@ -351,7 +351,7 @@ class DrawPolylineWall(bpy.types.Operator): def modal(self, context, event): if not self.is_input_on: - if event.type == "MOUSEMOVE": + if event.type == "MOUSEMOVE" or event.type == "INBETWEEN_MOUSEMOVE": self.mousemove_count += 1 self.is_input_on = False self.input_type = "OFF" diff --git a/src/bonsai/bonsai/bim/module/project/operator.py b/src/bonsai/bonsai/bim/module/project/operator.py index a8590cf9f3..db772d8e8d 100644 --- a/src/bonsai/bonsai/bim/module/project/operator.py +++ b/src/bonsai/bonsai/bim/module/project/operator.py @@ -2334,7 +2334,7 @@ class MeasureTool(bpy.types.Operator): def modal(self, context, event): if not self.is_input_on: - if event.type == "MOUSEMOVE": + if event.type == "MOUSEMOVE" or event.type == "INBETWEEN_MOUSEMOVE": self.mousemove_count += 1 self.is_input_on = False self.input_type = "OFF"