From 7c89143c709e58f22a4939886ccb15bd639eec17 Mon Sep 17 00:00:00 2001 From: Ben Fiedler Date: Thu, 23 Apr 2020 03:56:28 +0200 Subject: Use aerc.PushError where appropriate Forgot an unused import, to save you the hassle here is v2. --- commands/msg/modify-labels.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'commands/msg/modify-labels.go') diff --git a/commands/msg/modify-labels.go b/commands/msg/modify-labels.go index a53292e4..6fcd6edf 100644 --- a/commands/msg/modify-labels.go +++ b/commands/msg/modify-labels.go @@ -7,7 +7,6 @@ import ( "git.sr.ht/~sircmpwn/aerc/commands" "git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~sircmpwn/aerc/worker/types" - "github.com/gdamore/tcell" ) type ModifyLabels struct{} @@ -59,8 +58,7 @@ func (ModifyLabels) Execute(aerc *widgets.Aerc, args []string) error { case *types.Done: aerc.PushStatus("labels updated", 10*time.Second) case *types.Error: - aerc.PushStatus(" "+msg.Error.Error(), 10*time.Second). - Color(tcell.ColorDefault, tcell.ColorRed) + aerc.PushError(" "+msg.Error.Error()) } }) return nil -- cgit