From 8e9ce101eb093154063880a10189e242eb3688a7 Mon Sep 17 00:00:00 2001 From: Simon Schneegans Date: Wed, 31 Jul 2024 21:11:08 +0200 Subject: [PATCH] :beetle: Fix syntax error --- src/common/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/utils.js b/src/common/utils.js index 4e6b0916..9429acb4 100644 --- a/src/common/utils.js +++ b/src/common/utils.js @@ -535,7 +535,7 @@ export function createColorHSL(h, s, l) { if (shellVersionIsAtLeast(47, 'alpha')) { return Cogl.Color.init_from_hsl(h, s, l); } - return Clutter.Color.from_hsl(h, s, l); + return Clutter.Color.from_hls(h, l, s); } //////////////////////////////////////////////////////////////////////////////////////////