Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml')
-rw-r--r--plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml25
1 files changed, 0 insertions, 25 deletions
diff --git a/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml b/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml
deleted file mode 100644
index a30af6b335..0000000000
--- a/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml
+++ /dev/null
@@ -1,25 +0,0 @@
-// Copyright (c) 2018 Ultimaker B.V.
-// Toolbox is released under the terms of the LGPLv3 or higher.
-
-import QtQuick 2.10
-import QtQuick.Controls 1.4
-import QtQuick.Controls.Styles 1.4
-import UM 1.3 as UM
-
-Rectangle
-{
- id: page
- width: parent.width
- height: parent.height
- color: "transparent"
- Label
- {
- text: catalog.i18nc("@info", "Fetching packages...")
- color: UM.Theme.getColor("text")
- anchors
- {
- centerIn: parent
- }
- renderType: Text.NativeRendering
- }
-}