[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:34:44 CEST 2012
vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Tue May 15 01:33:54 2012 +0200| [81162e722f2f92e6415d7947416823486992b073] | 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
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=81162e722f2f92e6415d7947416823486992b073
---
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