Skip to content

Commit

Permalink
Merge pull request #553 from glyph/fullscreen-menubar-fix
Browse files Browse the repository at this point in the history
honor user-specified full-screen presentation options
  • Loading branch information
emsquared authored Mar 22, 2022
2 parents 95ba8aa + e110721 commit 7fb0ecf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/App/Classes/Views/Main Window/TVCMainWindow.m
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7fb0ecf

Please sign in to comment.