mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 03:22:33 +01:00
3f6d83e363
Fix empty project settings missing value return
23 lines
456 B
QML
23 lines
456 B
QML
import QtQuick
|
|
import ScreenPlayWidget
|
|
|
|
Rectangle {
|
|
implicitWidth: 500
|
|
implicitHeight: 300
|
|
color: "#80000000"
|
|
|
|
|
|
Text {
|
|
id: name
|
|
|
|
text: qsTr("This is a empty test widget. You can change the source in test.qml")
|
|
horizontalAlignment: Text.AlignHCenter
|
|
verticalAlignment: Text.AlignVCenter
|
|
wrapMode: Text.WordWrap
|
|
anchors.fill: parent
|
|
anchors.margins: 10
|
|
color: "white"
|
|
}
|
|
|
|
}
|