Compare commits

...

2 Commits

Author SHA1 Message Date
Jeff Carr c9f0f0d45f shortcut 2025-02-13 14:27:05 -06:00
Jeff Carr 7cf4595053 default to 'gocui' 2025-02-13 14:14:03 -06:00
2 changed files with 5 additions and 2 deletions

View File

@ -2,7 +2,7 @@ VERSION = $(shell git describe --tags)
BUILDTIME = $(shell date +%Y.%m.%d)
all: build
./helloworld
./helloworld --gui gocui
build:
GO111MODULE=off go build \
@ -30,6 +30,9 @@ embed:
gocui:
./helloworld --gui gocui
andlabs:
./helloworld --gui andlabs
goimports:
goimports -w *.go

View File

@ -33,7 +33,7 @@ func helloworld() {
window := myGui.NewWindow("hello world")
box := window.NewBox("vbox", false)
group := box.NewGroup("groupy")
group := box.NewGroup("A Group")
grid := group.NewGrid("gridiron", 2, 1)
grid.NewButton("hello", func() {