diff --git a/CHANGELOG.md b/CHANGELOG.md index 30f81e18..ac549010 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ CHANGELOG for FlatCAM Evo beta - in Markers Plugin, added a numeric mode - in Fiducials Plugin, for manual mode: added utility geometry and the ability to use a big cursor - minor fix in Fiducials Plugin +- make sure that replotting objects is done only for enabled objects 1.04.2022 diff --git a/appMain.py b/appMain.py index b6bd1338..394ae8e6 100644 --- a/appMain.py +++ b/appMain.py @@ -8346,6 +8346,8 @@ class App(QtCore.QObject): self.inform[str, bool].emit('%s...' % _("Redrawing all objects"), False) for plot_obj in self.collection.get_list(): + if plot_obj.obj_options['plot'] is False: + continue def worker_task(obj): with self.proc_container.new("Plotting"): if obj.kind == 'cncjob':