WIP: Remove delayed update in MachineManager

This commit is contained in:
Lipu Fei 2018-02-22 13:58:35 +01:00
parent 25dd63dc21
commit b415a36110
2 changed files with 0 additions and 80 deletions

View file

@ -540,8 +540,6 @@ class CuraApplication(QtApplication):
has_user_interaction = True
return has_user_interaction
onDiscardOrKeepProfileChangesClosed = pyqtSignal() # Used to notify other managers that the dialog was closed
@pyqtSlot(str)
def discardOrKeepProfileChangesClosed(self, option):
if option == "discard":
@ -564,7 +562,6 @@ class CuraApplication(QtApplication):
user_global_container.update()
# notify listeners that quality has changed (after user selected discard or keep)
self.onDiscardOrKeepProfileChangesClosed.emit()
self.getMachineManager().activeQualityChanged.emit()
@pyqtSlot(int)