From 997670132336ab123aef9ae1fc62485fb7e64460 Mon Sep 17 00:00:00 2001 From: AlanRockefeller Date: Mon, 3 Nov 2025 14:18:50 -0800 Subject: [PATCH] =?UTF-8?q?Release=20v0.=20=E2=80=94=20more=20improvements?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- faststack/faststack/qml/Main.qml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/faststack/faststack/qml/Main.qml b/faststack/faststack/qml/Main.qml index 287319b..6eb9015 100644 --- a/faststack/faststack/qml/Main.qml +++ b/faststack/faststack/qml/Main.qml @@ -7,12 +7,12 @@ import "." ApplicationWindow { id: root - width: Screen.width - height: Screen.height - x: 0 - y: 0 - visibility: Window.Windowed - flags: Qt.FramelessWindowHint + visible: true + width: 1200 + height: 800 + minimumWidth: 800 + minimumHeight: 500 + flags: Qt.FramelessWindowHint | Qt.Window title: "FastStack" Material.theme: isDarkTheme ? Material.Dark : Material.Light