- in Geometry Editor fixed an angle issue in the Circle sub-tool
- in Geometry Editor made sure that when using the Move sub-tool if there is no shape selected, when clicking to get selection that point is also used as reference for the Move command
This commit is contained in:
@@ -11,6 +11,8 @@ CHANGELOG for FlatCAM Evo beta
|
|||||||
|
|
||||||
- in Excellon Editor, Copy sub-tool, added UI and ability to copy as array
|
- in Excellon Editor, Copy sub-tool, added UI and ability to copy as array
|
||||||
- fixed an issue in Geometry Editor, Copy sub-tool where when the geometry copied numbers over the set limit then the copy as array is incorrect
|
- fixed an issue in Geometry Editor, Copy sub-tool where when the geometry copied numbers over the set limit then the copy as array is incorrect
|
||||||
|
- in Geometry Editor fixed an angle issue in the Circle sub-tool
|
||||||
|
- in Geometry Editor made sure that when using the Move sub-tool if there is no shape selected, when clicking to get selection that point is also used as reference for the Move command
|
||||||
|
|
||||||
1.05.2022
|
1.05.2022
|
||||||
|
|
||||||
|
|||||||
@@ -1950,6 +1950,7 @@ class FCMove(FCShapeTool):
|
|||||||
self.selection_shape = self.selection_bbox()
|
self.selection_shape = self.selection_bbox()
|
||||||
# self.draw_app.plot_all()
|
# self.draw_app.plot_all()
|
||||||
self.draw_app.app.inform.emit(_("Click on reference location ..."))
|
self.draw_app.app.inform.emit(_("Click on reference location ..."))
|
||||||
|
self.set_origin(point)
|
||||||
return
|
return
|
||||||
|
|
||||||
if self.origin is None:
|
if self.origin is None:
|
||||||
|
|||||||
@@ -248,7 +248,7 @@ class CircleEditorUI:
|
|||||||
self.angle_lbl = FCLabel('%s:' % _("Angle"))
|
self.angle_lbl = FCLabel('%s:' % _("Angle"))
|
||||||
self.angle_entry = FCDoubleSpinner()
|
self.angle_entry = FCDoubleSpinner()
|
||||||
self.angle_entry.set_precision(self.decimals)
|
self.angle_entry.set_precision(self.decimals)
|
||||||
self.angle_entry.set_range(0.0000, 360.0000)
|
self.angle_entry.set_range(-360.0000, 360.0000)
|
||||||
rad_grid.addWidget(self.angle_lbl, 2, 0)
|
rad_grid.addWidget(self.angle_lbl, 2, 0)
|
||||||
rad_grid.addWidget(self.angle_entry, 2, 1)
|
rad_grid.addWidget(self.angle_entry, 2, 1)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user