2
0
mirror of https://github.com/miguelmota/cointop synced 2024-11-10 13:10:26 +00:00
cointop/cointop/save.go
2020-07-27 00:26:20 -07:00

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()
}()
}