From b21e6fbf1cda0b8d6ec84081233e12cc57575ed0 Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Thu, 16 Nov 2023 23:57:44 -0800 Subject: [PATCH] initialstart: Don't fullscreen the window Potential workaround for #265 --- initialstart/qml/Wizard.qml | 22 ---------------------- initialstart/qml/main.qml | 2 +- 2 files changed, 1 insertion(+), 23 deletions(-) diff --git a/initialstart/qml/Wizard.qml b/initialstart/qml/Wizard.qml index 363dc813..d463d1a3 100644 --- a/initialstart/qml/Wizard.qml +++ b/initialstart/qml/Wizard.qml @@ -111,28 +111,6 @@ Kirigami.Page { } } - // top status bar - MobileShell.StatusBar { - id: statusBar - z: 1 - - Kirigami.Theme.inherit: false - Kirigami.Theme.colorSet: Kirigami.Theme.Complementary - - anchors.top: parent.top - anchors.left: parent.left - anchors.right: parent.right - - height: Kirigami.Units.gridUnit * 1.25 - - backgroundColor: "transparent" - - showSecondRow: false - showDropShadow: true - showTime: true - disableSystemTray: true // prevent SIGABRT, since loading the system tray leads to bad... things - } - LandingComponent { id: landingComponent anchors.fill: parent diff --git a/initialstart/qml/main.qml b/initialstart/qml/main.qml index 216b6776..2c161819 100644 --- a/initialstart/qml/main.qml +++ b/initialstart/qml/main.qml @@ -14,7 +14,7 @@ Kirigami.ApplicationWindow { width: 360 height: 720 - visibility: InitialStart.Wizard.testingMode ? "Windowed" : "FullScreen" + visibility: "Windowed" title: i18n("Initial Start")