From fa427ea1ac960f46934b54a7395531956e5c0e41 Mon Sep 17 00:00:00 2001 From: bbedward Date: Sun, 11 Jan 2026 14:04:48 -0500 Subject: [PATCH] settings: fix clipping of generic color selector fixes #1242 --- quickshell/Modules/Settings/ThemeColorsTab.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickshell/Modules/Settings/ThemeColorsTab.qml b/quickshell/Modules/Settings/ThemeColorsTab.qml index 6ba2d723..db385721 100644 --- a/quickshell/Modules/Settings/ThemeColorsTab.qml +++ b/quickshell/Modules/Settings/ThemeColorsTab.qml @@ -307,7 +307,7 @@ Item { Item { width: parent.width - height: genericColorGrid.implicitHeight + height: genericColorGrid.implicitHeight + Math.ceil(genericColorGrid.dotSize * 0.05) visible: Theme.currentThemeCategory === "generic" && Theme.currentTheme !== Theme.dynamic && Theme.currentThemeName !== "custom" Grid {