From bcacd311358cc17756e291a32e543c048866d0ea Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sat, 1 Sep 2018 17:25:29 -0700 Subject: [PATCH] Hide cursor on paging via the space bar. Fix #393. --- NetNewsWire/MainWindow/MainWindowController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NetNewsWire/MainWindow/MainWindowController.swift b/NetNewsWire/MainWindow/MainWindowController.swift index 45bbab85d..633797b7a 100644 --- a/NetNewsWire/MainWindow/MainWindowController.swift +++ b/NetNewsWire/MainWindow/MainWindowController.swift @@ -170,7 +170,7 @@ class MainWindowController : NSWindowController, NSUserInterfaceValidations { } detailViewController.canScrollDown { (canScroll) in - + NSCursor.setHiddenUntilMouseMoves(true) canScroll ? detailViewController.scrollPageDown(sender) : self.nextUnread(sender) } }