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 'resources/qml/EmptyViewMenuComponent.qml')
-rw-r--r--resources/qml/EmptyViewMenuComponent.qml6
1 files changed, 4 insertions, 2 deletions
diff --git a/resources/qml/EmptyViewMenuComponent.qml b/resources/qml/EmptyViewMenuComponent.qml
index 10a50ea023..61d821ccb6 100644
--- a/resources/qml/EmptyViewMenuComponent.qml
+++ b/resources/qml/EmptyViewMenuComponent.qml
@@ -3,7 +3,7 @@
import QtQuick 2.10
import QtQuick.Controls 2.3
-import QtGraphicalEffects 1.0 // For the dropshadow
+
import UM 1.2 as UM
@@ -12,6 +12,8 @@ Rectangle
{
color: UM.Theme.getColor("disabled")
+ /*
+ TODO: Reimplement later
DropShadow
{
id: shadow
@@ -24,5 +26,5 @@ Rectangle
color: UM.Theme.getColor("action_button_shadow")
// Should always be drawn behind the background.
z: parent.z - 1
- }
+ }*/
}