Color editing popups use swatch label for title

This commit is contained in:
2024-06-22 18:48:54 -04:00
parent e8a3a376ea
commit 48bfa05452
3 changed files with 7 additions and 3 deletions

View File

@@ -62,8 +62,6 @@ func RGBAToHSVA (r, g, b, a uint32) HSVA {
// Adapted from:
// https://www.cs.rit.edu/~ncs/color/t_convert.html
// FIXME: this does not always work!
component := func (x uint32) float64 {
return clamp01(float64(x) / 0xFFFF)
}