- made the Gerber aperture table not visibile as default and added a checkbox that can toggle the visibility
- fixed issue with plotting in CNCJob; with Plot kind set to something else than 'all' when toggling Plot, it was defaulting to kind = 'all'
This commit is contained in:
@@ -4902,7 +4902,8 @@ class FlatCAMCNCjob(FlatCAMObj, CNCjob):
|
|||||||
def on_plot_cb_click(self, *args):
|
def on_plot_cb_click(self, *args):
|
||||||
if self.muted_ui:
|
if self.muted_ui:
|
||||||
return
|
return
|
||||||
self.plot()
|
kind = self.ui.cncplot_method_combo.get_value()
|
||||||
|
self.plot(kind=kind)
|
||||||
self.read_form_item('plot')
|
self.read_form_item('plot')
|
||||||
|
|
||||||
self.ui_disconnect()
|
self.ui_disconnect()
|
||||||
|
|||||||
@@ -17,6 +17,8 @@ CAD program, and create G-Code for Isolation routing.
|
|||||||
- changed the layout in the Selected Tab UI
|
- changed the layout in the Selected Tab UI
|
||||||
- started to add apertures table support
|
- started to add apertures table support
|
||||||
- finished Gerber aperture table display
|
- finished Gerber aperture table display
|
||||||
|
- made the Gerber aperture table not visibile as default and added a checkbox that can toggle the visibility
|
||||||
|
- fixed issue with plotting in CNCJob; with Plot kind set to something else than 'all' when toggling Plot, it was defaulting to kind = 'all'
|
||||||
|
|
||||||
12.02.2019
|
12.02.2019
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user