Commit 2d044e47 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
(cherry picked from commit 81162e722f2f92e6415d7947416823486992b073)
parent d82f47cc
......@@ -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