Revision: 15353
          http://sourceforge.net/p/skim-app/code/15353
Author:   hofman
Date:     2025-06-03 14:15:52 +0000 (Tue, 03 Jun 2025)
Log Message:
-----------
Add all doccument windows to fullscreen animation so also closed windows join 
the full screen space

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

Modified: trunk/SKMainWindowController_FullScreen.m
===================================================================
--- trunk/SKMainWindowController_FullScreen.m   2025-06-03 09:50:22 UTC (rev 
15352)
+++ trunk/SKMainWindowController_FullScreen.m   2025-06-03 14:15:52 UTC (rev 
15353)
@@ -543,11 +543,8 @@
 
 - (NSArray *)customWindowsToEnterOrExitFullScreen {
     NSMutableArray *windows = [NSMutableArray array];
-    for (NSWindowController *wc in [[self document] windowControllers]) {
-        NSWindow *window = [wc window];
-        if ([window isVisible])
-            [windows addObject:window];
-    }
+    for (NSWindowController *wc in [[self document] windowControllers])
+        [windows addObject:[wc window]];
     savedNormalWindow = [[SKAnimatedBorderlessWindow alloc] 
initWithContentRect:[[self window] frame]];
     [windows addObject:savedNormalWindow];
     return windows;

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