- NCC Plugin: modified the previous change and now the simplification action is much bigger reducing the number of coordinates by a factor of 20 (20 times less)

- Paint Plugin: same as above
- Ncc Plugin: added some more tooltips
- Isolation Plugin: fixed some issues when using the Rest Machining option
This commit is contained in:
Marius Stanciu
2023-06-17 22:30:17 +03:00
parent 5fe50dbcd1
commit 968fb1f943
6 changed files with 159 additions and 113 deletions

View File

@@ -171,8 +171,11 @@ class FCVisibleProcessContainer(QtCore.QObject, FCProcessContainer):
else:
self.view.set_busy("%d %s" % (len(self.procs), _("processes running.")))
def update_view_text(self, new_text):
def update_view_text(self, new_text, clear=False):
# this has to be called after the method 'new' inherited by this class is called with a string text as param
self.new_text = new_text
if len(self.procs) == 1:
self.view.set_busy(self.text_to_display_in_activity + self.new_text, no_movie=True)
if clear is False:
self.view.set_busy(self.text_to_display_in_activity + self.new_text, no_movie=True)
else:
self.view.set_busy(self.new_text, no_movie=True)