From 58ebb9dfb7992ca9f1a3a3cc5db1d36d3217cb6e Mon Sep 17 00:00:00 2001 From: ItsLemmy Date: Mon, 13 Oct 2025 21:08:17 -0400 Subject: [PATCH] Settings-Wallpaper: fixed overflowing when enabling per monitor directory. --- Modules/Settings/Tabs/WallpaperTab.qml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Modules/Settings/Tabs/WallpaperTab.qml b/Modules/Settings/Tabs/WallpaperTab.qml index 0e1e34b8..c93c60da 100644 --- a/Modules/Settings/Tabs/WallpaperTab.qml +++ b/Modules/Settings/Tabs/WallpaperTab.qml @@ -56,17 +56,16 @@ ColumnLayout { visible: Settings.data.wallpaper.enableMultiMonitorDirectories Layout.fillWidth: true - Layout.minimumWidth: 550 radius: Style.radiusM color: Color.mSurfaceVariant border.color: Color.mOutline border.width: Math.max(1, Style.borderS) - implicitHeight: contentCol.implicitHeight + Style.marginXL * 2 + implicitHeight: contentCol.implicitHeight + Style.marginL * 2 ColumnLayout { id: contentCol anchors.fill: parent - anchors.margins: Style.marginXL + anchors.margins: Style.marginL spacing: Style.marginM Repeater { model: Quickshell.screens || []