Fix transparency in color pickers again

This commit is contained in:
2024-08-16 13:50:22 -04:00
parent 2fe433991d
commit 669c638fad
2 changed files with 2 additions and 2 deletions

View File

@@ -91,7 +91,7 @@ func (this *Swatch) Choose () {
committed := false
colorPicker := NewColorPicker(this.Value())
colorPicker := NewHSVAColorPicker(this.Value())
colorPicker.OnValueChange(func () {
this.userSetValue(colorPicker.Value())
})