apps: update to renamed ColorOp.Color field

Signed-off-by: Elias Naur <mail@eliasnaur.com>
This commit is contained in:
Elias Naur
2019-07-05 17:17:02 +02:00
parent 38ec6a8831
commit 6440fc35b7
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -177,7 +177,7 @@ func init() {
func colorMaterial(ops *ui.Ops, color color.RGBA) ui.BlockOp {
ops.Begin()
gdraw.ColorOp{Col: color}.Add(ops)
gdraw.ColorOp{Color: color}.Add(ops)
return ops.End()
}