Revision: 16159
          http://sourceforge.net/p/skim-app/code/16159
Author:   hofman
Date:     2026-04-04 14:24:56 +0000 (Sat, 04 Apr 2026)
Log Message:
-----------
don't use transition as key as this is used implicitly

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

Modified: trunk/SKMainWindowController.m
===================================================================
--- trunk/SKMainWindowController.m      2026-04-04 14:08:52 UTC (rev 16158)
+++ trunk/SKMainWindowController.m      2026-04-04 14:24:56 UTC (rev 16159)
@@ -1707,7 +1707,7 @@
         CAAnimation *animation = [CATransition animation];
         [animation setDuration:0.5];
         [animation setTimingFunction:[CAMediaTimingFunction 
functionWithName:kCAMediaTimingFunctionEaseInEaseOut]];
-        [[contentView layer] addAnimation:animation forKey:@"transition"];
+        [[contentView layer] addAnimation:animation forKey:@"animation"];
     }
     
     [contentView addSubview:overviewContentView];
@@ -1751,7 +1751,7 @@
         CAAnimation *animation = [CATransition animation];
         [animation setDuration:0.5];
         [animation setTimingFunction:[CAMediaTimingFunction 
functionWithName:kCAMediaTimingFunctionEaseInEaseOut]];
-        [[contentView layer] addAnimation:animation forKey:@"transition"];
+        [[contentView layer] addAnimation:animation forKey:@"animation"];
     }
     
     [overviewContentView removeFromSuperview];

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