diff options
| author | Pietro Gagliardi <[email protected]> | 2014-02-18 16:12:38 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-02-18 16:12:38 -0500 |
| commit | c02948847e9fb6102926a8a80c8feb817403db29 (patch) | |
| tree | 5497d91adb108c5411b1d14348a3aea3ca2458f4 | |
| parent | 24f73c666bacfd75fe2841561100f319ff791673 (diff) | |
Missed a ui. in the README example code.
| -rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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!") |
