diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2020-05-29 16:52:13 +0300 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2020-06-24 18:00:58 +0300 |
commit | ca4ff26e4581e0045f7f1899701d6335f0bce735 (patch) | |
tree | dd0458c513d0128b7457bdeb54c1185fe43cde29 | |
parent | f3ee268c94481fa1a60df5e8684a9ddf485f890c (diff) |
Messaging.qml: Use window width and height instead of screensjellyfish_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.1
Bug-AGL: SPEC-3379, SPEC-3447
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: Iea8f44f80ed7dae6ebd19b9cfdb6bba9d2cd705b
-rw-r--r-- | app/Messaging.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Messaging.qml b/app/Messaging.qml index f59850a..48568c2 100644 --- a/app/Messaging.qml +++ b/app/Messaging.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 |