summary refs log tree commit diff stats
path: root/commands
diff options
context:
space:
mode:
Diffstat (limited to 'commands')
-rw-r--r--commands/account/clear.go3
-rw-r--r--commands/compose/send.go4
2 files changed, 3 insertions, 4 deletions
diff --git a/commands/account/clear.go b/commands/account/clear.go
index 392fdd0..263b5de 100644
--- a/commands/account/clear.go
+++ b/commands/account/clear.go
@@ -2,6 +2,7 @@ package account
 
 import (
 	"errors"
+	"time"
 	"git.sr.ht/~sircmpwn/aerc/widgets"
 )
 
@@ -29,6 +30,6 @@ func (Clear) Execute(aerc *widgets.Aerc, args []string) error {
 		return errors.New("Cannot perform action. Messages still loading")
 	}
 	store.ApplyClear()
-	aerc.SetStatus("Clear complete.")
+	aerc.PushStatus("Clear complete.", 10*time.Second)
 	return nil
 }
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 != "" {
#n164'>164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225