From a38de28e72e49c7a50073db23447ba5741e51eef Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Thu, 1 May 2025 12:54:00 +1000 Subject: bar: workspaces scroll specialws Same behaviour as astal workspaces scroll Fix more undef errors Also increase by more when transparent dark layer --- config/Appearance.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config') diff --git a/config/Appearance.qml b/config/Appearance.qml index b17b125..1a2f059 100644 --- a/config/Appearance.qml +++ b/config/Appearance.qml @@ -23,7 +23,7 @@ Singleton { return c; c = Qt.rgba(c.r, c.g, c.b, layer ? transparency.layers : transparency.base); if (layer) - c.hsvValue = Math.max(0, Math.min(1, c.hslLightness + (light ? -0.2 : 0.1))); + c.hsvValue = Math.max(0, Math.min(1, c.hslLightness + (light ? -0.2 : 0.2))); return c; } -- cgit v1.2.3-freya