From 20cd96660d4bfb44e0be5695f71a92d5fb53a143 Mon Sep 17 00:00:00 2001 From: Arnaud Ferraris Date: Fri, 10 Dec 2021 12:28:47 +0100 Subject: Remove dependency on old application framework and wayland As the Application FW is being reworked, drop all related dependencies in order to start with a simpler initial implementation. This commit also drops wayland-related code as it won't be needed anymore with the new framework. Bug-AGL: SPEC-4159 Signed-off-by: Marius Vlad Signed-off-by: Arnaud Ferraris Change-Id: Id268e1feee363c60b85411e822103259c1071a24 --- launcher/qml/Launcher.qml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'launcher/qml/Launcher.qml') diff --git a/launcher/qml/Launcher.qml b/launcher/qml/Launcher.qml index 347cdfb..befce07 100644 --- a/launcher/qml/Launcher.qml +++ b/launcher/qml/Launcher.qml @@ -22,18 +22,18 @@ import QtQuick.Window 2.13 import AppModel 1.0 ApplicationWindow { - width: container.width * container.scale - height: container.height * container.scale - property int pid: -1 + id: root + //width: container.width + //height: container.height + flags: Qt.FramelessWindowHint + visible: true Item { id: container anchors.centerIn: parent width: Window.width height: Window.height - //scale: screenInfo.scale_factor() - scale: 1 Image { anchors.centerIn: parent -- cgit 1.2.3-korg