diff options
author | 2020-05-29 16:57:43 +0300 | |
---|---|---|
committer | 2020-06-12 16:20:21 +0300 | |
commit | 8959381168ddf1035dfbdf0a837f1aaf75a7bfa7 (patch) | |
tree | 3e4dded0b86b4a0c8a0d59c99087ad3926691073 | |
parent | be8837e88e987349270941d6beb45f3e03baec8c (diff) |
Radio.qml: Use the windows width and heightsandbox/mvlad/agl-compositor
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
-rw-r--r-- | app/Radio.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Radio.qml b/app/Radio.qml index e981219..f2aa727 100644 --- a/app/Radio.qml +++ b/app/Radio.qml @@ -41,8 +41,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 |