From b6216bf4a34ebefdfd7321be325eeee620fe908f Mon Sep 17 00:00:00 2001 From: Lipu Fei Date: Wed, 20 Mar 2019 09:08:14 +0100 Subject: [PATCH] Move CuraSplashScreen into cura.UI module --- cura/CuraApplication.py | 3 +-- cura/{ => UI}/CuraSplashScreen.py | 0 2 files changed, 1 insertion(+), 2 deletions(-) rename cura/{ => UI}/CuraSplashScreen.py (100%) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 1192455312..7a193401b9 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -48,7 +48,6 @@ from cura.Arranging.Arrange import Arrange from cura.Arranging.ArrangeObjectsJob import ArrangeObjectsJob from cura.Arranging.ArrangeObjectsAllBuildPlatesJob import ArrangeObjectsAllBuildPlatesJob from cura.Arranging.ShapeArray import ShapeArray -from cura.MultiplyObjectsJob import MultiplyObjectsJob from cura.GlobalStacksModel import GlobalStacksModel from cura.Scene.ConvexHullDecorator import ConvexHullDecorator from cura.Operations.SetParentOperation import SetParentOperation @@ -96,7 +95,7 @@ from . import CameraAnimation from . import PrintInformation from . import CuraActions from cura.Scene import ZOffsetDecorator -from . import CuraSplashScreen +from cura.UI import CuraSplashScreen from . import PrintJobPreviewImageProvider from . import MachineActionManager diff --git a/cura/CuraSplashScreen.py b/cura/UI/CuraSplashScreen.py similarity index 100% rename from cura/CuraSplashScreen.py rename to cura/UI/CuraSplashScreen.py