From 38f35fbd7d0fa4029054c96ccc3dc8df9fef6a8f Mon Sep 17 00:00:00 2001 From: quadbyte Date: Fri, 15 Aug 2025 17:29:33 -0400 Subject: [PATCH] Settings: Ensure a minimum size of 1280x720 --- Modules/Settings/SettingsPanel.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/Settings/SettingsPanel.qml b/Modules/Settings/SettingsPanel.qml index 06ea2df..094a75b 100644 --- a/Modules/Settings/SettingsPanel.qml +++ b/Modules/Settings/SettingsPanel.qml @@ -193,8 +193,8 @@ NLoader { border.color: Colors.mOutlineVariant border.width: Math.max(1, Style.borderThin * scaling) layer.enabled: true - width: (screen.width * 0.5) * scaling - height: (screen.height * 0.5) * scaling + width: Math.max(screen.width * 0.5, 1280) * scaling + height: Math.max(screen.width * 0.5, 720) * scaling anchors.centerIn: parent // Animation properties