dropdown menus work again

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2024-01-17 03:02:12 -06:00
parent e691f1c52b
commit 4feb266a17
2 changed files with 10 additions and 3 deletions

View File

@ -1,7 +1,14 @@
all: all: build
go build -v -x
./helloworld ./helloworld
build:
-rm -f helloworld
go build -v -x
stderr: build
echo "writing to /tmp/helloworld.stderr"
./helloworld >/tmp/helloworld.stderr 2>&1
push: push:
git add --all git add --all
git commit -a git commit -a

View File

@ -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 // go will sit here until the window exits
func main() { func main() {
myGui = gui.New().Default() myGui = gui.New().Default()
myGui.LoadToolkit("nocui") // myGui.LoadToolkit("nocui")
helloworld() helloworld()
gui.Watchdog() gui.Watchdog()