summaryrefslogtreecommitdiff
path: root/cmds
diff options
context:
space:
mode:
Diffstat (limited to 'cmds')
-rw-r--r--cmds/buttonplugin/main.go6
-rw-r--r--cmds/textbox/Makefile4
2 files changed, 2 insertions, 8 deletions
diff --git a/cmds/buttonplugin/main.go b/cmds/buttonplugin/main.go
index 9ed47fa..0c72c3f 100644
--- a/cmds/buttonplugin/main.go
+++ b/cmds/buttonplugin/main.go
@@ -81,12 +81,6 @@ func buttonWindow() {
gui.DebugWindow()
})
- g.NewButton("gui.GolangDebugWindow()", func () {
- // make a seperate window out of this
- // w.GolangDebugWindow(false)
- w.GolangDebugWindow(true)
- })
-
g.NewButton("LoadToolkit(andlabs)", func () {
gui.LoadToolkit("andlabs")
})
diff --git a/cmds/textbox/Makefile b/cmds/textbox/Makefile
index 7b0e57d..6ca4329 100644
--- a/cmds/textbox/Makefile
+++ b/cmds/textbox/Makefile
@@ -1,5 +1,5 @@
run: build
- ./textbox --gui-debug
+ GOTRACEBACK=all ./textbox --gui-debug
build-release:
go get -v -u -x .
@@ -7,7 +7,7 @@ build-release:
build:
GO111MODULE="off" go get -v -x .
- GO111MODULE="off" go build
+ GO111MODULE="off" GOTRACEBACK=all go build
update:
GO111MODULE="off" go get -v -u -x .