From 83496d2f6968f7d12a183581d320065bdba52132 Mon Sep 17 00:00:00 2001 From: Marius Vlad Date: Wed, 29 Apr 2020 01:21:44 +0300 Subject: agl-compositor: New adaptation to using the agl-shell-desktop proto Signed-off-by: Marius Vlad --- launcher/qml/Launcher.qml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'launcher/qml') diff --git a/launcher/qml/Launcher.qml b/launcher/qml/Launcher.qml index 2247f51..f7f1c1b 100644 --- a/launcher/qml/Launcher.qml +++ b/launcher/qml/Launcher.qml @@ -18,6 +18,7 @@ import QtQuick 2.6 import QtQuick.Layouts 1.1 import QtQuick.Controls 2.0 +import QtQuick.Window 2.13 import AppModel 1.0 ApplicationWindow { @@ -29,9 +30,10 @@ ApplicationWindow { Item { id: container anchors.centerIn: parent - width: 1080 - height: 1488 - scale: screenInfo.scale_factor() + width: Screen.width + height: Screen.height + //scale: screenInfo.scale_factor() + scale: 1 Image { anchors.centerIn: parent -- cgit 1.2.3-korg