summaryrefslogtreecommitdiff
path: root/eventBindings.go
diff options
context:
space:
mode:
Diffstat (limited to 'eventBindings.go')
-rw-r--r--eventBindings.go8
1 files changed, 6 insertions, 2 deletions
diff --git a/eventBindings.go b/eventBindings.go
index 33602ba..600bea0 100644
--- a/eventBindings.go
+++ b/eventBindings.go
@@ -110,12 +110,16 @@ func theStdout(g *gocui.Gui, v *gocui.View) error {
me.stdout.outputOffscreen = true
log.Info("set stdout on screen here")
}
+ // move the stdout window back onscreen
me.stdout.tk.relocateStdout(me.stdout.lastW, me.stdout.lastH)
me.stdout.outputOnTop = false
- me.baseGui.SetViewOnBottom("msg")
+ setThingsOnTop()
+ // me.baseGui.SetViewOnBottom("msg")
+ // setBottomBG()
} else {
me.stdout.outputOnTop = true
- me.baseGui.SetViewOnTop("msg")
+ setThingsOnTop()
+ // me.baseGui.SetViewOnTop("msg")
}
return nil
}