mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 06:16:24 +02:00
18 lines
282 B
QML
18 lines
282 B
QML
import QtQuick 2.5
|
|
import QtQuick.Controls 1.4
|
|
|
|
Rectangle {
|
|
width: 100
|
|
height: 100
|
|
color: "white"
|
|
Rectangle {
|
|
width: 10
|
|
height: 10
|
|
color: "red"
|
|
}
|
|
|
|
Label {
|
|
text: OverlayWindowTestString
|
|
anchors.centerIn: parent
|
|
}
|
|
}
|