Merge pull request #428 from wavexx/force_status_fgcolor

Michael Muré created

Set the Fg color of the status bar to White

Change summary

termui/bug_table.go    | 1 +
termui/label_select.go | 1 +
termui/show_bug.go     | 1 +
3 files changed, 3 insertions(+)

Detailed changes

termui/bug_table.go 🔗

@@ -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")

termui/label_select.go 🔗

@@ -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()

termui/show_bug.go 🔗

@@ -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
 	}