Revision: 14242
          http://sourceforge.net/p/skim-app/code/14242
Author:   hofman
Date:     2024-04-24 16:07:25 +0000 (Wed, 24 Apr 2024)
Log Message:
-----------
check only whether selected tab window is full screen

Modified Paths:
--------------
    trunk/SKMainWindowController_FullScreen.m

Modified: trunk/SKMainWindowController_FullScreen.m
===================================================================
--- trunk/SKMainWindowController_FullScreen.m   2024-04-24 16:01:18 UTC (rev 
14241)
+++ trunk/SKMainWindowController_FullScreen.m   2024-04-24 16:07:25 UTC (rev 
14242)
@@ -388,7 +388,7 @@
     if ([[[self window] tabbedWindows] count] > 1) {
         NSWindowTabGroup *tabGroup = [[self window] tabGroup];
         if ([tabGroup selectedWindow] != [self window]) {
-            if ((([[self window] styleMask] | [[tabGroup selectedWindow] 
styleMask]) & NSWindowStyleMaskFullScreen))
+            if (([[tabGroup selectedWindow] styleMask] & 
NSWindowStyleMaskFullScreen))
                 return;
             [tabGroup setSelectedWindow:[self window]];
         }

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
Skim-app-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/skim-app-commit

Reply via email to