diff --git a/quickshell/Modals/Settings/SettingsModal.qml b/quickshell/Modals/Settings/SettingsModal.qml index da41e7f4..2c8db982 100644 --- a/quickshell/Modals/Settings/SettingsModal.qml +++ b/quickshell/Modals/Settings/SettingsModal.qml @@ -182,13 +182,19 @@ FloatingWindow { } } - SettingsContent { - id: content - + Item { width: parent.width - sidebar.width height: parent.height - parentModal: settingsModal - currentIndex: settingsModal.currentTabIndex + + SettingsContent { + id: content + + width: Math.min(550, parent.width) + height: parent.height + anchors.horizontalCenter: parent.horizontalCenter + parentModal: settingsModal + currentIndex: settingsModal.currentTabIndex + } } } }