parent
c55a039042
commit
e00cbad32e
4
debug.go
4
debug.go
|
@ -90,6 +90,6 @@ func addTableTab() {
|
|||
parts = append(parts, b)
|
||||
}
|
||||
|
||||
log.Println("Sleep for 2 seconds, then try to add new tabs")
|
||||
time.Sleep(1 * 1000 * 1000 * 1000)
|
||||
log.Println("Sleep for 1 second, then try to add new tabs")
|
||||
time.Sleep(1 * time.Second)
|
||||
}
|
||||
|
|
|
@ -23,7 +23,7 @@ func StartNewWindow(bg bool, name string, axis int, callback func(*GuiBox) *GuiB
|
|||
|
||||
runWindow(window.UiWindow)
|
||||
})
|
||||
time.Sleep(2000 * time.Millisecond) // this might make it more stable on windows?
|
||||
time.Sleep(500 * time.Millisecond) // this might make it more stable on windows?
|
||||
} else {
|
||||
log.Println("StartNewWindow() WAITING for ui.Main()")
|
||||
ui.Main(func() {
|
||||
|
|
Loading…
Reference in New Issue