From fad43be23b80aa82628722a9ad1e2dbecb4e132a Mon Sep 17 00:00:00 2001 From: Ian Paschal Date: Tue, 16 Jan 2018 17:03:52 +0100 Subject: [PATCH] Fixes CURA-4789 Emits `sceneChanged` which `PrintInformation` listens for and then resets with. Same result re: print time, but also will update anythign else which is listening for `sceneChanged`. --- cura/CuraApplication.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 3c5eca2f21..0ac50c9e5e 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -1062,7 +1062,8 @@ class CuraApplication(QtApplication): Selection.clear() # Reset the print information: - self._print_information.setToZeroPrintInformation(self.getBuildPlateModel().activeBuildPlate) + self.getController().getScene().sceneChanged.emit(node) + # self._print_information.setToZeroPrintInformation(self.getBuildPlateModel().activeBuildPlate) # stay on the same build plate #self.getCuraSceneController().setActiveBuildPlate(0) # Select first build plate