Improve output of multiple screen resolution
[apps/mediaplayer.git] / app / MediaPlayer.qml
index 99ed3ea..983087c 100644 (file)
@@ -22,6 +22,9 @@ import AGL.Demo.Controls 1.0
 ApplicationWindow {
     id: root
 
+    width: container.width * container.scale
+    height: container.height * container.scale
+
     Item {
         id: player
 
@@ -168,6 +171,13 @@ ApplicationWindow {
         }
     }
 
+    Item {
+        id: container
+        anchors.centerIn: parent
+        width: 1080
+        height: 1487
+        scale: screenInfo.scale_factor()
+
     ColumnLayout {
         anchors.fill: parent
         Item {
@@ -417,3 +427,4 @@ ApplicationWindow {
         }
     }
 }
+}