Fix issue where next unread wasn't wrapping around. Fixes #2942

This commit is contained in:
Maurice Parker 2021-03-29 14:33:08 -05:00
parent fb9114538c
commit 95234706e1

View File

@ -197,7 +197,7 @@ class MainWindowController : NSWindowController, NSUserInterfaceValidations {
} }
if item.action == #selector(nextUnread(_:)) { if item.action == #selector(nextUnread(_:)) {
return canGoToNextUnread() return canGoToNextUnread(wrappingToTop: true)
} }
if item.action == #selector(markAllAsRead(_:)) { if item.action == #selector(markAllAsRead(_:)) {