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/ToolboxErrorPage.qml')
-rw-r--r--plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml23
1 files changed, 0 insertions, 23 deletions
diff --git a/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml b/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml
deleted file mode 100644
index e57e63dbb9..0000000000
--- a/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml
+++ /dev/null
@@ -1,23 +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
-
-Rectangle
-{
- id: page
- width: parent.width
- height: parent.height
- color: "transparent"
- Label
- {
- text: catalog.i18nc("@info", "Could not connect to the Cura Package database. Please check your connection.")
- anchors
- {
- centerIn: parent
- }
- renderType: Text.NativeRendering
- }
-}