summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarius Vlad <marius.vlad@collabora.com>2020-01-22 20:29:13 +0200
committerMarius Vlad <marius.vlad@collabora.com>2020-06-24 17:08:51 +0300
commite8d39ebb00189c47e38992e3923acb4df7a81cc9 (patch)
tree00f117c86f78579b4d57ba20cbd2b68ff08814de
parente18f66f3318c8b073f68fe6f00aaec7d2c882ad7 (diff)
app/MediaPlayer: Do not hard-code the window size
Bug-AGL: SPEC-3447 Signed-off-by: Marius Vlad <marius.vlad@collabora.com> Change-Id: Id7cc10901a26e1344a9f2bed522821b220168c62
-rw-r--r--app/MediaPlayer.qml10
1 files changed, 7 insertions, 3 deletions
diff --git a/app/MediaPlayer.qml b/app/MediaPlayer.qml
index b287c8a..cdd9368 100644
--- a/app/MediaPlayer.qml
+++ b/app/MediaPlayer.qml
@@ -17,6 +17,9 @@
import QtQuick 2.11
import QtQuick.Layouts 1.11
import QtQuick.Controls 2.4
+
+import QtQuick.Window 2.11
+
import AGL.Demo.Controls 1.0
ApplicationWindow {
@@ -92,9 +95,10 @@ ApplicationWindow {
Item {
id: container
anchors.centerIn: parent
- width: 1080
- height: 1487
- scale: screenInfo.scale_factor()
+ width: Screen.width
+ height: Screen.height
+ //scale: screenInfo.scale_factor()
+ scale: 1
ColumnLayout {
anchors.fill: parent