aboutsummaryrefslogtreecommitdiffstats
path: root/termui/bug_table.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2020-08-22 15:27:57 +0200
committerMichael Muré <batolettre@gmail.com>2020-08-22 15:27:57 +0200
commit8eb7faf67c403e9692fa7faa0a3f2d74fa774330 (patch)
tree452106ca9239045b4358b22612069b790b62bc3e /termui/bug_table.go
parent9ce84fc1a310e04ab63661f5fc3963a9de317981 (diff)
downloadgit-bug-8eb7faf67c403e9692fa7faa0a3f2d74fa774330.tar.gz
termui: help bar background goes all the width
Diffstat (limited to 'termui/bug_table.go')
-rw-r--r--termui/bug_table.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/termui/bug_table.go b/termui/bug_table.go
index d4e4552e..b2361907 100644
--- a/termui/bug_table.go
+++ b/termui/bug_table.go
@@ -128,7 +128,7 @@ func (bt *bugTable) layout(g *gocui.Gui) error {
v.Frame = false
v.FgColor = gocui.ColorWhite
- _, _ = fmt.Fprint(v, bugTableHelp.Render())
+ _, _ = fmt.Fprint(v, bugTableHelp.Render(maxX))
}
_, err = g.SetCurrentView(bugTableView)