Use PushStatus instead of SetStatus where it makes sense

This commit is contained in:
Heiko Carrasco 2020-07-08 18:03:34 +02:00 committed by Reto Brunner
parent 32df768d03
commit 749dbb93a4
3 changed files with 4 additions and 6 deletions
commands/compose

View file

@ -12,7 +12,6 @@ import (
"github.com/emersion/go-sasl"
"github.com/emersion/go-smtp"
"github.com/gdamore/tcell"
"github.com/google/shlex"
"github.com/miolini/datacounter"
"github.com/pkg/errors"
@ -225,8 +224,7 @@ func (Send) Execute(aerc *widgets.Aerc, args []string) error {
aerc.PushStatus("Sending...", 10*time.Second)
nbytes, err := sendAsync()
if err != nil {
aerc.SetStatus(" "+err.Error()).
Color(tcell.ColorDefault, tcell.ColorRed)
aerc.PushError(" " + err.Error())
return
}
if config.CopyTo != "" {