diff --git a/cointop/conversion.go b/cointop/conversion.go index c45ef94..5bb90fb 100644 --- a/cointop/conversion.go +++ b/cointop/conversion.go @@ -235,6 +235,10 @@ func (ct *Cointop) SetCurrencyConverstion(convert string) error { func (ct *Cointop) SetCurrencyConverstionFn(convert string) func() error { log.Debug("SetCurrencyConverstionFn()") return func() error { + if !ct.State.convertMenuVisible { + return nil + } + ct.HideConvertMenu() if err := ct.SetCurrencyConverstion(convert); err != nil {