From 11a484593157819f44170803640de826f499fb1f Mon Sep 17 00:00:00 2001 From: ChrisTerBeke Date: Thu, 4 Jan 2018 10:41:25 +0100 Subject: [PATCH] Move CuraSceneController together with rest of scene related code --- cura/CuraApplication.py | 2 +- cura/{ => Scene}/CuraSceneController.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename cura/{ => Scene}/CuraSceneController.py (100%) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index bf9e0016cb..476b5d3708 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -44,7 +44,7 @@ from cura.Scene.BlockSlicingDecorator import BlockSlicingDecorator from cura.Scene.BuildPlateDecorator import BuildPlateDecorator from cura.Scene.CuraSceneNode import CuraSceneNode -from cura.CuraSceneController import CuraSceneController +from cura.Scene.CuraSceneController import CuraSceneController from UM.Settings.SettingDefinition import SettingDefinition, DefinitionPropertyType from UM.Settings.ContainerRegistry import ContainerRegistry diff --git a/cura/CuraSceneController.py b/cura/Scene/CuraSceneController.py similarity index 100% rename from cura/CuraSceneController.py rename to cura/Scene/CuraSceneController.py