summaryrefslogtreecommitdiff
path: root/stdoutShow.go
diff options
context:
space:
mode:
Diffstat (limited to 'stdoutShow.go')
-rw-r--r--stdoutShow.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/stdoutShow.go b/stdoutShow.go
index 0d8b360..4ae6247 100644
--- a/stdoutShow.go
+++ b/stdoutShow.go
@@ -16,17 +16,6 @@ import (
var outputW int = 180
var outputH int = 40
-func moveMsg(g *gocui.Gui) {
- mx, my := g.MousePosition()
- if !movingMsg && (mx != initialMouseX || my != initialMouseY) {
- movingMsg = true
- }
- g.SetView("msg", mx-xOffset, my-yOffset, mx-xOffset+outputW, my-yOffset+outputH+me.FramePadH, 0)
- me.startOutputW = mx - xOffset
- me.startOutputH = my - yOffset
- g.SetViewOnBottom("msg")
-}
-
func showMsg(g *gocui.Gui, v *gocui.View) error {
var l string
var err error