From 9f860724ef53227bf96154583e1f6658d049eee6 Mon Sep 17 00:00:00 2001 From: Miguel Mota Date: Thu, 26 Apr 2018 11:33:47 -0700 Subject: [PATCH] capitalize status bar --- cointop/statusbar.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cointop/statusbar.go b/cointop/statusbar.go index c6b8787..2b23697 100644 --- a/cointop/statusbar.go +++ b/cointop/statusbar.go @@ -11,12 +11,12 @@ func (ct *Cointop) updateStatusbar(s string) { ct.statusbarview.Clear() currpage := ct.currentDisplayPage() totalpages := ct.totalPages() - base := "[q]uit [?]help [c]hart [/]search" - fmt.Fprintln(ct.statusbarview, pad.Right(fmt.Sprintf("%v [← →]page %v/%v %s", base, currpage, totalpages, s), ct.maxtablewidth, " ")) + base := "[q]Quit [?]Help [c]Chart [/]Search" + fmt.Fprintln(ct.statusbarview, pad.Right(fmt.Sprintf("%v [← →]Page %v/%v %s", base, currpage, totalpages, s), ct.maxtablewidth, " ")) }) } func (ct *Cointop) refreshRowLink() { url := ct.rowLink() - ct.updateStatusbar(fmt.Sprintf("[o]pen %s", url)) + ct.updateStatusbar(fmt.Sprintf("[o]Open %s", url)) }