aboutsummaryrefslogtreecommitdiff
path: root/commands/term.go
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-03-30 13:05:00 -0400
committerDrew DeVault <sir@cmpwn.com>2019-03-30 13:05:00 -0400
commit2958579ee75359dacfabb6d1b36664468011113c (patch)
treeccd5d4decc909fa3111739419cb231cb4e2e4962 /commands/term.go
parent84965d680cff655c7734070ef93fd3c1e2177748 (diff)
Correct color of error messages
Diffstat (limited to 'commands/term.go')
-rw-r--r--commands/term.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/term.go b/commands/term.go
index d122e78..aea6382 100644
--- a/commands/term.go
+++ b/commands/term.go
@@ -39,7 +39,7 @@ func Term(aerc *widgets.Aerc, args []string) error {
aerc.RemoveTab(host)
if err != nil {
aerc.PushStatus(" "+err.Error(), 10*time.Second).
- Color(tcell.ColorRed, tcell.ColorWhite)
+ Color(tcell.ColorDefault, tcell.ColorRed)
}
}
return nil