diff options
Diffstat (limited to 'app/Settings.qml')
-rw-r--r-- | app/Settings.qml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/Settings.qml b/app/Settings.qml index b3a622a..256467b 100644 --- a/app/Settings.qml +++ b/app/Settings.qml @@ -26,12 +26,21 @@ import 'version' ApplicationWindow { id: root + width: container.width * container.scale + height: container.height * container.scale onVisibleChanged: { if (!visible) stack.pop(settings) } + Item { + id: container + anchors.centerIn: parent + width: 1080 + height: 1487 + scale: screenInfo.scale_factor() + StackView { id: stack anchors.fill: parent @@ -66,3 +75,4 @@ ApplicationWindow { Version {} } } +} |