diff options
author | 2020-05-29 16:58:12 +0300 | |
---|---|---|
committer | 2020-06-12 15:46:23 +0300 | |
commit | 24d77c16e8c4b56d38c4e301fd09efed80f7ae8b (patch) | |
tree | 95d27f4f155b037ce961cf7bea74095e8f5de72d | |
parent | db033ed89df13f3aed8e4302072589613554984d (diff) |
Settings.qml: Use the windows width and heightsandbox/mvlad/agl-compositor
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
-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 { |