You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cointop/cointop/save.go

31 lines
531 B
Go

package cointop
import "log"
// Save saves the cointop settings to the config file
func (ct *Cointop) Save() error {
ct.debuglog("Save()")
ct.SetSavingStatus()
if err := ct.saveConfig(); err != nil {
log.Fatal(err)
}
ct.CacheAllCoinsSlugMap()
return nil
}
// SetSavingStatus sets the saving indicator in the statusbar
func (ct *Cointop) SetSavingStatus() {
ct.debuglog("SetSavingStatus()")
if ct.g == nil {
return
}
go func() {
ct.loadingTicks("saving", 590)
ct.UpdateStatusbar("")
ct.RowChanged()
}()
}