From c02948847e9fb6102926a8a80c8feb817403db29 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Tue, 18 Feb 2014 16:12:38 -0500 Subject: [PATCH] Missed a ui. in the README example code. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 86ebf9c..bd3927e 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ func main() { w.Closing = ui.Event() b := ui.NewButton("Click Me") b2 := ui.NewButton("Or Me") - s2 := ui.NewStack(Horizontal, b, b2) + s2 := ui.NewStack(ui.Horizontal, b, b2) c := ui.NewCheckbox("Check Me") cb1 := ui.NewCombobox(true, "You can edit me!", "Yes you can!", "Yes you will!") cb2 := ui.NewCombobox(false, "You can't edit me!", "No you can't!", "No you won't!")