- corrected some issues and made Move Tool to show correctly when it is moving and when it is offsetting the objects position

This commit is contained in:
Marius Stanciu
2019-09-07 18:41:48 +03:00
committed by Marius
parent 4cbb5846e3
commit 97024ed643
6 changed files with 77 additions and 34 deletions

View File

@@ -7655,8 +7655,9 @@ class FlatCAMActivityView(QtWidgets.QWidget):
self.movie.stop()
self.text.setText(_("Idle."))
def set_busy(self, msg):
self.movie.start()
def set_busy(self, msg, no_movie=None):
if no_movie is not True:
self.movie.start()
self.text.setText(msg)