Skip to content

Commit

Permalink
🪲 Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
Schneegans committed Jul 31, 2024
1 parent d64049c commit 8e9ce10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

//////////////////////////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit 8e9ce10

Please sign in to comment.