summaryrefslogtreecommitdiff
path: root/eventBindings.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-06 04:47:50 -0600
committerJeff Carr <[email protected]>2025-02-06 04:47:50 -0600
commit9c7b139e5ac7c0fbec70a827aab6d0d2b9a030b7 (patch)
tree134dd43db3313fefc72f60d5520c3955130b06dc /eventBindings.go
parentd3b25092f89c86c8448f4bd088cdd128b9e28e2c (diff)
full screen BG widget is created. good enough to ship it
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
}