mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-24 06:39:38 +08:00

For some reason qt6 that we built still didn't like it. Since we wanna know if the rest works, yeeting that stuff out for now
31 lines
619 B
QML
31 lines
619 B
QML
// Copyright (c) 2019 Ultimaker B.V.
|
|
// Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
import QtQuick 2.10
|
|
import QtQuick.Controls 2.3
|
|
|
|
|
|
import UM 1.2 as UM
|
|
|
|
// Empty placeholder
|
|
Rectangle
|
|
{
|
|
color: UM.Theme.getColor("disabled")
|
|
|
|
/*
|
|
TODO: Reimplement later
|
|
DropShadow
|
|
{
|
|
id: shadow
|
|
// Don't blur the shadow
|
|
radius: 0
|
|
anchors.fill: parent
|
|
source: parent
|
|
verticalOffset: 2
|
|
visible: true
|
|
color: UM.Theme.getColor("action_button_shadow")
|
|
// Should always be drawn behind the background.
|
|
z: parent.z - 1
|
|
}*/
|
|
}
|