diff --git a/FlatCAMObj.py b/FlatCAMObj.py index 9817d35d..4270da10 100644 --- a/FlatCAMObj.py +++ b/FlatCAMObj.py @@ -4902,7 +4902,8 @@ class FlatCAMCNCjob(FlatCAMObj, CNCjob): def on_plot_cb_click(self, *args): if self.muted_ui: return - self.plot() + kind = self.ui.cncplot_method_combo.get_value() + self.plot(kind=kind) self.read_form_item('plot') self.ui_disconnect() diff --git a/README.md b/README.md index 3c02bbea..e57ed2e0 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,8 @@ CAD program, and create G-Code for Isolation routing. - changed the layout in the Selected Tab UI - started to add apertures table support - 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