aboutsummaryrefslogtreecommitdiffstats
path: root/commands/account/next-result.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/account/next-result.go')
-rw-r--r--commands/account/next-result.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/account/next-result.go b/commands/account/next-result.go
index 78d437d3..fe835eab 100644
--- a/commands/account/next-result.go
+++ b/commands/account/next-result.go
@@ -34,13 +34,13 @@ func (NextPrevResult) Execute(aerc *widgets.Aerc, args []string) error {
if store != nil {
store.PrevResult()
}
- acct.Messages().Scroll()
+ acct.Messages().Invalidate()
} else {
store := acct.Store()
if store != nil {
store.NextResult()
}
- acct.Messages().Scroll()
+ acct.Messages().Invalidate()
}
return nil
}