shift-shell/look-and-feel/contents/lockscreen/LockScreen.qml
Aaron Seigo 7f5627fedf opacity
2014-08-07 21:52:22 +02:00

20 lines
304 B
QML

import QtQuick 2.0
Item {
id: lockscreen
Leaves {
id: background
anchors.fill: parent
}
Rectangle {
id: test
color: "red"
opacity: .5
height: 100
width: parent.width
y: parent.height / 2 - height / 2
x: 0
}
}