diff options
| author | Jeff Carr <[email protected]> | 2019-05-24 13:23:50 -0700 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2019-05-24 13:23:50 -0700 |
| commit | 858f7fd93cf77bdb7bafbae0f58af6eae1766aec (patch) | |
| tree | ef6836c593eeb1def1860fc33e60c110f51e16b5 /debug.go | |
| parent | 238c39de36931ad81427d964228cd5bc0c3ea60a (diff) | |
button handling almost completely cleaned up
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'debug.go')
| -rw-r--r-- | debug.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -56,7 +56,7 @@ func addTableTab() { AddTableTab(Data.cloudTab, 1, "test seven", 7, parts) } -func addDebuggingButtons(vbox *ui.Box, custom func(*ButtonMap, string)) { +func addDebuggingButtons(vbox *ui.Box, custom func(*ButtonMap)) { vbox.Append(ui.NewLabel("Debugging:"), false) vbox.Append(ui.NewColorButton(), false) @@ -116,7 +116,7 @@ func addDebuggingButtons(vbox *ui.Box, custom func(*ButtonMap, string)) { vbox.Append(CreateButton("Load test.json config file", "CONFIG", custom), false) } -func runTestExecClick(b *ButtonMap, msg string) { +func runTestExecClick(b *ButtonMap) { log.Println("runTestExecClick START") if runtime.GOOS == "linux" { go runCommand("xterm -report-fonts") |
