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

29 lines
513 B
Go

package cointop
// 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 {
return 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()
}()
}