From 95234706e14cd6c90af26cdefc6d0c40828cc577 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Mon, 29 Mar 2021 14:33:08 -0500 Subject: [PATCH] Fix issue where next unread wasn't wrapping around. Fixes #2942 --- Mac/MainWindow/MainWindowController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mac/MainWindow/MainWindowController.swift b/Mac/MainWindow/MainWindowController.swift index bdacce4db..4db72dd1e 100644 --- a/Mac/MainWindow/MainWindowController.swift +++ b/Mac/MainWindow/MainWindowController.swift @@ -197,7 +197,7 @@ class MainWindowController : NSWindowController, NSUserInterfaceValidations { } if item.action == #selector(nextUnread(_:)) { - return canGoToNextUnread() + return canGoToNextUnread(wrappingToTop: true) } if item.action == #selector(markAllAsRead(_:)) {