dropdown menus work again
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
e691f1c52b
commit
4feb266a17
11
Makefile
11
Makefile
|
@ -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
|
||||||
|
|
2
main.go
2
main.go
|
@ -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()
|
||||||
|
|
Loading…
Reference in New Issue