- fixed issue in ToolMove regarding grid snapping recently introduced
This commit is contained in:
@@ -97,7 +97,7 @@ class ToolMove(FlatCAMTool):
|
|||||||
pos_canvas = self.app.plotcanvas.vispy_canvas.translate_coords(event.pos)
|
pos_canvas = self.app.plotcanvas.vispy_canvas.translate_coords(event.pos)
|
||||||
|
|
||||||
# if GRID is active we need to get the snapped positions
|
# if GRID is active we need to get the snapped positions
|
||||||
if self.app.grid_status() is True:
|
if self.app.grid_status() == True:
|
||||||
pos = self.app.geo_editor.snap(pos_canvas[0], pos_canvas[1])
|
pos = self.app.geo_editor.snap(pos_canvas[0], pos_canvas[1])
|
||||||
else:
|
else:
|
||||||
pos = pos_canvas
|
pos = pos_canvas
|
||||||
@@ -117,7 +117,7 @@ class ToolMove(FlatCAMTool):
|
|||||||
self.delete_shape()
|
self.delete_shape()
|
||||||
|
|
||||||
# if GRID is active we need to get the snapped positions
|
# if GRID is active we need to get the snapped positions
|
||||||
if self.app.grid_status() is True:
|
if self.app.grid_status() == True:
|
||||||
pos = self.app.geo_editor.snap(pos_canvas[0], pos_canvas[1])
|
pos = self.app.geo_editor.snap(pos_canvas[0], pos_canvas[1])
|
||||||
else:
|
else:
|
||||||
pos = pos_canvas
|
pos = pos_canvas
|
||||||
@@ -181,7 +181,7 @@ class ToolMove(FlatCAMTool):
|
|||||||
pos_canvas = self.app.plotcanvas.vispy_canvas.translate_coords(event.pos)
|
pos_canvas = self.app.plotcanvas.vispy_canvas.translate_coords(event.pos)
|
||||||
|
|
||||||
# if GRID is active we need to get the snapped positions
|
# if GRID is active we need to get the snapped positions
|
||||||
if self.app.grid_status() is True:
|
if self.app.grid_status() == True:
|
||||||
pos = self.app.geo_editor.snap(pos_canvas[0], pos_canvas[1])
|
pos = self.app.geo_editor.snap(pos_canvas[0], pos_canvas[1])
|
||||||
else:
|
else:
|
||||||
pos = pos_canvas
|
pos = pos_canvas
|
||||||
|
|||||||
Reference in New Issue
Block a user