From 155f01356a3294f4e00bb878a7374763b68c9b17 Mon Sep 17 00:00:00 2001 From: Lipu Fei Date: Wed, 3 May 2017 13:30:49 +0200 Subject: [PATCH] Set job name when opening a file from CLI CURA-3711 --- cura/CuraApplication.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index f099c4db77..69990ceb4b 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -1277,6 +1277,8 @@ class CuraApplication(QtApplication): arranger = Arrange.create(scene_root = root) min_offset = 8 + self.fileLoaded.emit(filename) + for node in nodes: node.setSelectable(True) node.setName(os.path.basename(filename))