You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if(@selector(toggleFullscreen:) == action) [anItem setTitle:NSLocalizedString(([[PGDocumentController sharedDocumentController] isFullscreen] ? @"Exit Full Screen" : @"Enter Full Screen"), @"Enter/exit full screen. Two states of the same item.")];
if(@selector(toggleInfo:) == action) [anItem setTitle:NSLocalizedString(([[selfactiveDocument] showsInfo] ? @"Hide Info" : @"Show Info"), @"Lets the user toggle the on-screen display. Two states of the same item.")];
1116
1153
if(@selector(toggleThumbnails:) == action) [anItem setTitle:NSLocalizedString(([[selfactiveDocument] showsThumbnails] ? @"Hide Thumbnails" : @"Show Thumbnails"), @"Lets the user toggle whether thumbnails are shown. Two states of the same item.")];
Copy file name to clipboardExpand all lines: Controllers/PGFullscreenController.m
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -64,8 +64,6 @@ - (void)prepareToExitFullscreen
64
64
[self_setMenuBarHidden:NOdelayed:NO]; // For some reason, this moves windows downward slightly (at least on 10.5.3), so make sure it happens before our new windows get put onscreen.
0 commit comments