diff options
author | 2020-05-29 16:52:13 +0300 | |
---|---|---|
committer | 2020-06-12 16:18:10 +0300 | |
commit | 53743bf690fef99f4785f73b0996d5d6d93ee06d (patch) | |
tree | a6a36dc851193077f20be644cb8be10cdfffc040 | |
parent | 76e73d2f23c35b3b812c52b0bac9576200ff09eb (diff) |
Messaging.qml: Use window width and height instead of screenssandbox/mvlad/agl-compositor
Bug-AGL: SPEC-3379
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
-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 |