diff options
Diffstat (limited to 'commands/msg/move.go')
-rw-r--r-- | commands/msg/move.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/commands/msg/move.go b/commands/msg/move.go index 5300c5a..2367076 100644 --- a/commands/msg/move.go +++ b/commands/msg/move.go @@ -45,7 +45,8 @@ func Move(aerc *widgets.Aerc, args []string) error { if isMsgView { aerc.RemoveTab(widget) } - acct.Messages().Next() + store.Next() + acct.Messages().Scroll() store.Move([]uint32{msg.Uid}, args[optind], createParents, func( msg types.WorkerMessage) { |