Change summary
termui/bug_table.go | 1 +
termui/label_select.go | 1 +
termui/show_bug.go | 1 +
3 files changed, 3 insertions(+)
Detailed changes
@@ -116,6 +116,7 @@ func (bt *bugTable) layout(g *gocui.Gui) error {
}
v.Frame = false
+ v.FgColor = gocui.ColorWhite
v.BgColor = gocui.ColorBlue
_, _ = fmt.Fprintf(v, "[q] Quit [s] Search [←↓↑→,hjkl] Navigation [↵] Open bug [n] New bug [i] Pull [o] Push")
@@ -144,6 +144,7 @@ func (ls *labelSelect) layout(g *gocui.Gui) error {
return err
}
v.Frame = false
+ v.FgColor = gocui.ColorWhite
v.BgColor = gocui.ColorBlue
}
v.Clear()
@@ -92,6 +92,7 @@ func (sb *showBug) layout(g *gocui.Gui) error {
sb.childViews = append(sb.childViews, showBugInstructionView)
v.Frame = false
+ v.FgColor = gocui.ColorWhite
v.BgColor = gocui.ColorBlue
}