X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=app%2FMediaPlayer.qml;h=983087c348065074de265823792a6fc22baadb37;hb=73a4daea8884292b69d70f37a26d39e16abadcca;hp=99ed3ea40e2bcdafbed8385c4bf2d6a5012f9c91;hpb=52808e4ca68eeabaccbdef4566e1ecf9bf4c9db3;p=apps%2Fmediaplayer.git diff --git a/app/MediaPlayer.qml b/app/MediaPlayer.qml index 99ed3ea..983087c 100644 --- a/app/MediaPlayer.qml +++ b/app/MediaPlayer.qml @@ -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 { } } } +}