- when disabling plots, if the selection shape is visible, it will be deleted

- small changes in Tool Panel (eliminating some deepcopy() calls)
- made sure that all the progress counters count to 100%
This commit is contained in:
Marius Stanciu
2019-09-10 16:05:54 +03:00
parent dc6479210a
commit 4114e773dd
6 changed files with 26 additions and 18 deletions

View File

@@ -9902,6 +9902,11 @@ The normal flow when working in FlatCAM is the following:</span></p>
obj.options['plot'] = False
obj.options.set_change_callback(obj.on_options_change)
try:
self.delete_selection_shape()
except Exception as e:
log.debug("App.disable_plots() --> %s" % str(e))
# self.plots_updated.emit()
def worker_task(objects):
with self.proc_container.new(_("Disabling plots ...")):