From e1107212032758f2c0d4e9699b72f3de747bdceb Mon Sep 17 00:00:00 2001 From: Glyph Date: Wed, 22 Dec 2021 15:53:09 -0800 Subject: [PATCH] honor user-specified full-screen presentation options --- Sources/App/Classes/Views/Main Window/TVCMainWindow.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/App/Classes/Views/Main Window/TVCMainWindow.m b/Sources/App/Classes/Views/Main Window/TVCMainWindow.m index 711f55638..449d0e03c 100644 --- a/Sources/App/Classes/Views/Main Window/TVCMainWindow.m +++ b/Sources/App/Classes/Views/Main Window/TVCMainWindow.m @@ -521,7 +521,7 @@ - (NSSize)window:(NSWindow *)window willUseFullScreenContentSize:(NSSize)propose - (NSApplicationPresentationOptions)window:(NSWindow *)window willUseFullScreenPresentationOptions:(NSApplicationPresentationOptions)proposedOptions { - return (NSApplicationPresentationFullScreen | NSApplicationPresentationHideDock | NSApplicationPresentationAutoHideMenuBar); + return proposedOptions; } - (void)windowDidExitFullScreen:(NSNotification *)notification