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/WelcomePages/WelcomeDialogItem.qml')
-rw-r--r--resources/qml/WelcomePages/WelcomeDialogItem.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/qml/WelcomePages/WelcomeDialogItem.qml b/resources/qml/WelcomePages/WelcomeDialogItem.qml
index 2d01642ada..d98610d7d8 100644
--- a/resources/qml/WelcomePages/WelcomeDialogItem.qml
+++ b/resources/qml/WelcomePages/WelcomeDialogItem.qml
@@ -4,7 +4,6 @@
import QtQuick 2.10
import QtQuick.Controls 2.3
import QtQuick.Window 2.2
-import QtGraphicalEffects 1.0 // For the DropShadow
import UM 1.3 as UM
import Cura 1.1 as Cura
@@ -45,7 +44,8 @@ Item
}
// Drop shadow around the panel
- DropShadow
+ // TODO: Maybe re-implement this some other way.
+ /*DropShadow
{
id: shadow
radius: UM.Theme.getSize("first_run_shadow_radius").width
@@ -55,7 +55,7 @@ Item
verticalOffset: shadowOffset
color: UM.Theme.getColor("first_run_shadow")
transparentBorder: true
- }
+ }*/
// Close this dialog when there's no more page to show
Connections