successfully entered a row
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
76bf66e1f9
commit
67418e41da
7
Makefile
7
Makefile
|
@ -1,11 +1,14 @@
|
|||
run:
|
||||
go run *.go
|
||||
|
||||
gaper:
|
||||
# 'gaper' is a simple and smart golang tool that just rebuilds every time you change a file
|
||||
# go get -u github.com/maxcnunes/gaper
|
||||
gaper
|
||||
|
||||
#### NEVER DO THIS. THIS APPEARS TO INDUCE INSTABILITY IN GTK
|
||||
run:
|
||||
#### NEVER DO THIS. THIS APPEARS TO INDUCE INSTABILITY IN GTK
|
||||
# go run *.go
|
||||
|
||||
# simple sortcut to push all git changes
|
||||
push:
|
||||
git pull
|
||||
|
|
3
main.go
3
main.go
|
@ -76,6 +76,9 @@ func main() {
|
|||
time.Sleep(1 * 1000 * 1000 * 1000)
|
||||
gui.AddTableTab("jcarr", 7, "fire")
|
||||
|
||||
log.Println("Sleep for 1000 seconds, then try to add new tabs")
|
||||
time.Sleep(1000 * 1000 * 1000 * 1000)
|
||||
|
||||
/*
|
||||
// THIS CRASHES FOR SOME REASON
|
||||
log.Println("Sleep for 10 seconds, then try to add new tabs")
|
||||
|
|
Loading…
Reference in New Issue