mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-10-30 17:40:47 +03:00
11 lines
145 B
QML
11 lines
145 B
QML
import QtQuick 2.1
|
|
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
|
|
Text {
|
|
anchors.centerIn: parent
|
|
text: qsTr("No room open")
|
|
font.pointSize: 24
|
|
}
|
|
}
|