Revision: 14205
          http://sourceforge.net/p/skim-app/code/14205
Author:   hofman
Date:     2024-04-10 21:23:00 +0000 (Wed, 10 Apr 2024)
Log Message:
-----------
MIN instead of MAX

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

Modified: trunk/SKMainWindowController_FullScreen.m
===================================================================
--- trunk/SKMainWindowController_FullScreen.m   2024-04-10 16:47:48 UTC (rev 
14204)
+++ trunk/SKMainWindowController_FullScreen.m   2024-04-10 21:23:00 UTC (rev 
14205)
@@ -534,7 +534,7 @@
         [mainWindow setAlphaValue:1.0];
     
     if ([[tabGroup windows] count])
-        [tabGroup insertWindow:mainWindow atIndex:MAX(tabIndex, [[tabGroup 
windows] count])];
+        [tabGroup insertWindow:mainWindow atIndex:MIN(tabIndex, [[tabGroup 
windows] count])];
     
     [NSAnimationContext runAnimationGroup:^(NSAnimationContext *context) {
             [context setDuration:PRESENTATION_DURATION];

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