Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lenemter committed Jan 27, 2024
1 parent c4c35ab commit 306ab7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Backends/AccentColor/ColorExtractor.vala
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public class SettingsDaemon.ColorExtractor : Object {
double green = pixels[offset + 1];
double blue = pixels[offset + 2];

list.add ((uint32) (red * 65536 + green * 16 + blue));
list.add ((uint32) (red * 65536 + green * 256 + blue));
}

return list;
Expand Down

0 comments on commit 306ab7a

Please sign in to comment.