Use PushStatus instead of SetStatus where it makes sense
This commit is contained in:
parent
32df768d03
commit
749dbb93a4
3 changed files with 4 additions and 6 deletions
commands/compose
|
@ -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 != "" {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue