From 784707bb85347e79fb7030e84bfabc29b0371724 Mon Sep 17 00:00:00 2001 From: Lipu Fei Date: Mon, 15 Jan 2018 14:40:37 +0100 Subject: [PATCH] Stay on the same build plate after everything is removed CURA-4795 --- cura/CuraApplication.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 428a26f956..099c71c708 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -1063,7 +1063,8 @@ class CuraApplication(QtApplication): Logger.log("i", "Reseting print information") self._print_information = PrintInformation.PrintInformation() - self.getCuraSceneController().setActiveBuildPlate(0) # Select first build plate + # stay on the same build plate + #self.getCuraSceneController().setActiveBuildPlate(0) # Select first build plate ## Reset all translation on nodes with mesh data. @pyqtSlot()