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/components/ToolboxShadow.qml')
-rw-r--r--plugins/Toolbox/resources/qml/components/ToolboxShadow.qml24
1 files changed, 0 insertions, 24 deletions
diff --git a/plugins/Toolbox/resources/qml/components/ToolboxShadow.qml b/plugins/Toolbox/resources/qml/components/ToolboxShadow.qml
deleted file mode 100644
index 0f2f98beb9..0000000000
--- a/plugins/Toolbox/resources/qml/components/ToolboxShadow.qml
+++ /dev/null
@@ -1,24 +0,0 @@
-// Copyright (c) 2018 Ultimaker B.V.
-// Toolbox is released under the terms of the LGPLv3 or higher.
-
-import QtQuick 2.2
-
-Rectangle
-{
- property bool reversed: false
- width: parent.width
- height: 8
- gradient: Gradient
- {
- GradientStop
- {
- position: reversed ? 1.0 : 0.0
- color: reversed ? Qt.rgba(0,0,0,0.05) : Qt.rgba(0,0,0,0.2)
- }
- GradientStop
- {
- position: reversed ? 0.0 : 1.0
- color: Qt.rgba(0,0,0,0)
- }
- }
-}