summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--choices.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/choices.go b/choices.go
index ee496d5..654f0b9 100644
--- a/choices.go
+++ b/choices.go
@@ -62,7 +62,7 @@ func newChoices(parent *gui.Node) *choices {
c.animal.AddText("honey badger")
c.animal.AddText("polar bear")
- c.place = gadgets.NewBasicEntry(c.grid, "common favorite place")
+ c.place = gadgets.NewBasicEntry(c.grid, "favorite place")
c.place.Custom = func() {
log.Info("now set to:", c.place.String())
if c.place == section1.place {
@@ -80,6 +80,9 @@ func newChoices(parent *gui.Node) *choices {
c.grid.NewButton("disable animals", func() {
c.animal.Disable()
})
+ c.grid.NewButton("set trust", func() {
+ c.place.SetText("trust")
+ })
return c
}