diff options
Diffstat (limited to 'commands')
-rw-r--r-- | commands/account/cf.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/commands/account/cf.go b/commands/account/cf.go index ad93fdf6..b5cda53f 100644 --- a/commands/account/cf.go +++ b/commands/account/cf.go @@ -5,6 +5,7 @@ import ( "strings" "git.sr.ht/~rjarry/aerc/commands" + "git.sr.ht/~rjarry/aerc/lib/statusline" "git.sr.ht/~rjarry/aerc/widgets" ) @@ -52,6 +53,7 @@ func (ChangeFolder) Execute(aerc *widgets.Aerc, args []string) error { store := acct.Store() if store != nil { store.ApplyClear() + acct.SetStatus(statusline.SearchFilterClear()) } return nil } |