diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2020-05-29 16:56:04 +0300 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2020-06-12 15:24:58 +0300 |
commit | 077879f3c1b11b8934c0961992c59af1d3b3b454 (patch) | |
tree | f3c2948eb0ec3097dc37c0f41103e62d161cb8ec | |
parent | 6d4abc60ccc279c7f744ca872be62cbfdfb46df0 (diff) |
app/Phone.qml: Use windows width and heightsandbox/mvlad/agl-compositor
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
-rw-r--r-- | app/Phone.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Phone.qml b/app/Phone.qml index 9ef99af..6b38f77 100644 --- a/app/Phone.qml +++ b/app/Phone.qml @@ -30,8 +30,8 @@ ApplicationWindow { Item { id: container anchors.centerIn: parent - width: Screen.width - height: Screen.height + width: Window.width + height: Window.height //scale: screenInfo.scale_factor() scale: 1 |