Include currency conversion in chart title #207

pull/209/head
Simon Roberts 3 years ago
parent 3daa91df03
commit 8a68e0a98c
No known key found for this signature in database
GPG Key ID: 0F30F99E6B771FD4

@ -78,9 +78,10 @@ func (ct *Cointop) UpdateMarketbar() error {
chartInfo := ""
if !ct.State.hideChart {
chartInfo = fmt.Sprintf(
"[ Chart: %s %s ] ",
"[ Chart: %s %s %s ] ",
charttitle,
timeframe,
ct.State.currencyConversion,
)
}
@ -141,9 +142,10 @@ func (ct *Cointop) UpdateMarketbar() error {
chartInfo := ""
if !ct.State.hideChart {
chartInfo = fmt.Sprintf(
"[ Chart: %s %s ] ",
"[ Chart: %s %s %s] ",
ct.colorscheme.MarketBarLabelActive(chartname),
timeframe,
ct.State.currencyConversion,
)
}

Loading…
Cancel
Save