summaryrefslogtreecommitdiff
path: root/init.go
diff options
context:
space:
mode:
Diffstat (limited to 'init.go')
-rw-r--r--init.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/init.go b/init.go
index 8bff631..000e6f0 100644
--- a/init.go
+++ b/init.go
@@ -202,10 +202,10 @@ func gocuiMain() {
func newWindowTrigger() {
log.Log(NOW, "newWindowTriggerl() START")
for {
- log.Log(NOW, "newWindowTrigger() for loop")
+ // log.Log(NOW, "GO plugin toolkit made a new window")
select {
case tk := <-me.newWindowTrigger:
- log.Log(NOW, "newWindowTrigger() got new window", tk.cuiName)
+ // log.Log(NOW, "newWindowTrigger() got new window", tk.cuiName)
time.Sleep(200 * time.Millisecond)
redoWindows(1, -1)
if !me.stdout.init {
@@ -215,7 +215,7 @@ func newWindowTrigger() {
tk.makeWindowActive()
tk.redrawWindow(tk.gocuiSize.w0, tk.gocuiSize.h0)
setThingsOnTop() // sets help, Stdout, etc on the top after windows have been redrawn
- log.Log(NOW, "newWindowTrigger() after sleep")
+ // log.Log(NOW, "newWindowTrigger() after sleep")
}
}
}