[vlc-commits] macosx: fix execution on 10.6

David Fuhrmann git at videolan.org
Wed Jun 12 21:02:40 CEST 2013


vlc | branch: master | David Fuhrmann <david.fuhrmann at googlemail.com> | Wed Jun 12 18:46:06 2013 +0200| [eb9c29c6eaf8803a0da581bef35fb3c6aef99524] | committer: David Fuhrmann

macosx: fix execution on 10.6

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=eb9c29c6eaf8803a0da581bef35fb3c6aef99524
---

 modules/gui/macosx/fspanel.m |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/modules/gui/macosx/fspanel.m b/modules/gui/macosx/fspanel.m
index 76cc102..b22ca7e 100644
--- a/modules/gui/macosx/fspanel.m
+++ b/modules/gui/macosx/fspanel.m
@@ -72,7 +72,8 @@
     if (!isInside)
         [self mouseExited:NULL];
 
-    [self setAnimationBehavior:NSWindowAnimationBehaviorNone];
+    if (!OSX_SNOW_LEOPARD)
+        [self setAnimationBehavior:NSWindowAnimationBehaviorNone];
 
     /* get a notification if VLC isn't the active app anymore */
     [[NSNotificationCenter defaultCenter]



More information about the vlc-commits mailing list