diff options
| author | Jeff Carr <[email protected]> | 2024-01-17 03:19:59 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-17 03:19:59 -0600 |
| commit | b39e2e1c5e055b705c7cc6b6234bfa342e3c100c (patch) | |
| tree | ee3641e3c61b4485d1a821583b2262b2a4570b83 | |
| parent | 4feb266a1751a06d718d7261475e85787106399b (diff) | |
works
Signed-off-by: Jeff Carr <[email protected]>
| -rw-r--r-- | main.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -11,7 +11,7 @@ var myGui *gui.Node // This is the beginning of the binary tree of widgets // go will sit here until the window exits func main() { myGui = gui.New().Default() - // myGui.LoadToolkit("nocui") + myGui.LoadToolkit("nocui") helloworld() gui.Watchdog() @@ -40,11 +40,13 @@ func helloworld() { dd.AddText("asdjf") dd.AddText("a1jf") dd.AddText("jf") + dd.SetText("Beagleboard") cb := grid.NewCombobox().SetProgName("COLORS") cb.AddText("Cyan") cb.AddText("Magenta") cb.AddText("Yellow") + cb.SetText("orange") queryGroup := box.NewGroup("query") |
