diff options
| author | Jeff Carr <[email protected]> | 2024-01-30 11:07:35 -0600 | 
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-30 11:07:35 -0600 | 
| commit | 7627b9ef2754d973401572cfc4ff681768ad4d73 (patch) | |
| tree | 8e6188a28aed7a45ed204b151e9aad6407c49a77 | |
| parent | 95bc56e694d745b4513e232fe23df326bb193f31 (diff) | |
Signed-off-by: Jeff Carr <[email protected]>
| -rw-r--r-- | main.go | 12 | 
1 files changed, 12 insertions, 0 deletions
@@ -82,14 +82,26 @@ func DebugWindow2(newB *gui.Node, title string) *gui.Node {  		bugWin.LoadToolkit("nocui")  	}) +	gr.NewButton("unload toolkit 'nocui'", func() { +		bugWin.CloseToolkit("nocui") +	}) +  	gr.NewButton("load toolkit 'gocui'", func() {  		bugWin.LoadToolkit("gocui")  	}) +	gr.NewButton("unload toolkit 'gocui'", func() { +		bugWin.CloseToolkit("gocui") +	}) +  	gr.NewButton("load toolkit 'andlabs'", func() {  		bugWin.LoadToolkit("andlabs")  	}) +	gr.NewButton("unload toolkit 'andlabs'", func() { +		bugWin.CloseToolkit("andlabs") +	}) +  	gr = newB.NewGroup("Learn GO")  	gr.NewButton("GO Language Internals", func() {  | 
