12345678910111213141516171819202122232425262728 |
- import QtQuick 2.10
- import QtQuick.Controls 2.3
- import QtGraphicalEffects 1.0
- import UM 1.2 as UM
- Rectangle
- {
- color: UM.Theme.getColor("disabled")
- DropShadow
- {
- id: shadow
-
- radius: 0
- anchors.fill: parent
- source: parent
- verticalOffset: 2
- visible: true
- color: UM.Theme.getColor("action_button_shadow")
-
- z: parent.z - 1
- }
- }
|