From 322a95adee683345164c887eb5db5bf86d46a13a Mon Sep 17 00:00:00 2001 From: Elias Naur Date: Tue, 2 Jul 2019 20:00:28 +0200 Subject: [PATCH] apps/hello: update to latest gio api Signed-off-by: Elias Naur --- apps/hello/hello.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/hello/hello.go b/apps/hello/hello.go index 3108b03f..6d78877c 100644 --- a/apps/hello/hello.go +++ b/apps/hello/hello.go @@ -44,7 +44,7 @@ func loop(w *app.Window) { } var cfg ui.Config faces := &measure.Faces{Config: &cfg} - maroon := color.NRGBA{127, 0, 0, 255} + maroon := color.RGBA{127, 0, 0, 255} face := faces.For(regular, ui.Sp(72)) message := "Hello, Gio" ops := new(ui.Ops)