diff options
author | Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com> | 2018-08-02 12:36:27 +0000 |
---|---|---|
committer | Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com> | 2018-08-02 12:36:27 +0000 |
commit | 73a4daea8884292b69d70f37a26d39e16abadcca (patch) | |
tree | 37e9e2f2c90fc4bb7990a7a6205afdaa66a08f98 /app/MediaPlayer.qml | |
parent | 52808e4ca68eeabaccbdef4566e1ecf9bf4c9db3 (diff) |
Improve output of multiple screen resolution
To improve output on various monitor with various resolution,
use scale_factor from WM to fit various screen resolution.
Bug-AGL: SPEC-1568, SPEC-1569, SPEC-1611
Change-Id: Ifb0391e7acf9546778dd0993e8e0d3f9b66c5dc9
Signed-off-by: Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com>
Diffstat (limited to 'app/MediaPlayer.qml')
-rw-r--r-- | app/MediaPlayer.qml | 11 |
1 files changed, 11 insertions, 0 deletions
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 { } } } +} |