- make sure that replotting objects is done only for enabled objects

This commit is contained in:
Marius Stanciu
2022-04-02 21:21:05 +03:00
committed by Marius
parent d7fd4dc8f2
commit 80a699693f
2 changed files with 3 additions and 0 deletions

View File

@@ -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':