From 749dbb93a4af2dc3afdda4c9fe8a300b43a69d0f Mon Sep 17 00:00:00 2001 From: Heiko Carrasco Date: Wed, 8 Jul 2020 18:03:34 +0200 Subject: Use PushStatus instead of SetStatus where it makes sense --- commands/compose/send.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'commands/compose/send.go') diff --git a/commands/compose/send.go b/commands/compose/send.go index 59ae5d0..40ac4ca 100644 --- a/commands/compose/send.go +++ b/commands/compose/send.go @@ -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 != "" { -- cgit v1.2.3