Commit 81162e72 authored by Felix Paul Kühne's avatar 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
parent 1c4ea062
......@@ -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) )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment