diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2020-05-29 13:43:36 +0300 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2020-06-24 17:08:51 +0300 |
commit | 23cd364ee2ec8d2c38ec04288e942feac065942e (patch) | |
tree | 17acbd75ef5d8a4039596c4e13e91ef16c17bf39 | |
parent | 7ad9148455f925e285822e8c17d94ce94f564732 (diff) |
app/MediaPlayer.qml: Use Window width and height
Bug-AGL: SPEC-3379
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: Ie0b77df34c29591157069e0a92287acb5e53b958
-rw-r--r-- | app/MediaPlayer.qml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/app/MediaPlayer.qml b/app/MediaPlayer.qml index cdd9368..94281f5 100644 --- a/app/MediaPlayer.qml +++ b/app/MediaPlayer.qml @@ -17,8 +17,7 @@ import QtQuick 2.11 import QtQuick.Layouts 1.11 import QtQuick.Controls 2.4 - -import QtQuick.Window 2.11 +import QtQuick.Window 2.13 import AGL.Demo.Controls 1.0 @@ -95,8 +94,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 |