From 58c508e708a8aa051a3e0daf009f0a5f03373a9a Mon Sep 17 00:00:00 2001 From: quadbyte Date: Wed, 6 Aug 2025 21:20:02 -0400 Subject: [PATCH] Bigger settings panel - does not work well in 1080p --- Widgets/SettingsWindow/SettingsWindow.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Widgets/SettingsWindow/SettingsWindow.qml b/Widgets/SettingsWindow/SettingsWindow.qml index 95b91d2..f873504 100644 --- a/Widgets/SettingsWindow/SettingsWindow.qml +++ b/Widgets/SettingsWindow/SettingsWindow.qml @@ -148,8 +148,8 @@ PanelWithOverlay { Rectangle { id: settingsWindowRect - implicitWidth: Quickshell.screens.length > 0 ? Quickshell.screens[0].width / 2 : 600 - implicitHeight: Quickshell.screens.length > 0 ? Quickshell.screens[0].height / 2 : 400 + implicitWidth: Quickshell.screens.length > 0 ? Quickshell.screens[0].width * 2 / 3 : 600 + implicitHeight: Quickshell.screens.length > 0 ? Quickshell.screens[0].height * 2 / 3 : 400 visible: parent.visible color: "transparent" // Center the settings window on screen