diff --git a/src/Project-Orion/Main.qml b/src/Project-Orion/Main.qml index 41424f8..992d40f 100644 --- a/src/Project-Orion/Main.qml +++ b/src/Project-Orion/Main.qml @@ -4,5 +4,22 @@ Window { width: 640 height: 480 visible: true - title: qsTr("Hello World") + title: qsTr("Lifespan viewer") + minimumWidth: 200 + minimumHeight: 150 + + Rectangle { + anchors.verticalCenter: parent.verticalCenter + anchors.horizontalCenter: parent.horizontalCenter + + Text { + id: emptyText + anchors.verticalCenter: parent.verticalCenter + anchors.horizontalCenter: parent.horizontalCenter + text: qsTr("This view is currently empty :(") + height: parent.height + } + + + } }