[vlc-commits] macosx: limit the 'big' fullscreen panel to the 27'' iMac (refs #6383)

Felix Paul Kühne git at videolan.org
Tue May 15 01:39:48 CEST 2012


vlc/vlc-2.0 | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Tue May 15 01:33:54 2012 +0200| [2d044e476e1fb9f65ad93472468be378ff613879] | committer: Felix Paul Kühne

macosx: limit the 'big' fullscreen panel to the 27'' iMac (refs #6383)

an option to switch the modes is in the works
(cherry picked from commit 81162e722f2f92e6415d7947416823486992b073)

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

 modules/gui/macosx/fspanel.m |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/gui/macosx/fspanel.m b/modules/gui/macosx/fspanel.m
index 178a717..0163512 100644
--- a/modules/gui/macosx/fspanel.m
+++ b/modules/gui/macosx/fspanel.m
@@ -133,7 +133,7 @@
     theScreensFrame = [screen frame];
     theWindowsFrame = [self frame];
 
-    if( theScreensFrame.size.width >= 1920 ) //  17" MBP, 24"/27" iMacs, external displays
+    if( theScreensFrame.size.width >= 2560 ) //  27" iMacs, external displays
         b_usingBigScreen = YES;
 
     if( (b_usingBigScreen && theWindowsFrame.size.width < 820) || (!b_usingBigScreen && theWindowsFrame.size.width > 550) )



More information about the vlc-commits mailing list