diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2020-05-29 16:58:12 +0300 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2020-06-24 17:56:10 +0300 |
commit | 89a6741e348b1b3c47dd8e47337f338a9e2c7331 (patch) | |
tree | 8c4f1ded08b9ca253ad89c911603c7b94b1ddcff /app/Settings.qml | |
parent | 01c01f55534dad5cc055c26eb67d9d0e6cf37b3d (diff) |
Settings.qml: Use the windows width and heightkoi_10.91.0koi/10.91.0jellyfish_9.99.4jellyfish_9.99.3jellyfish_9.99.2jellyfish_9.99.1jellyfish/9.99.4jellyfish/9.99.3jellyfish/9.99.2jellyfish/9.99.19.99.49.99.39.99.29.99.110.91.0
Bug-AGL: SPEC-3447
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: I912a87ad872258c14ace7a6adce1be300944bca2
Diffstat (limited to 'app/Settings.qml')
-rw-r--r-- | app/Settings.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Settings.qml b/app/Settings.qml index 0bf6c3f..f257d8a 100644 --- a/app/Settings.qml +++ b/app/Settings.qml @@ -39,8 +39,8 @@ ApplicationWindow { Item { id: container anchors.centerIn: parent - width: Screen.width - height: Screen.height + width: Window.width + height: Window.height scale: 1 StackView { |