From 484db9d92b1e722ac2c77aa638187479d21f2687 Mon Sep 17 00:00:00 2001 From: John Maguire Date: Wed, 18 Feb 2015 17:29:07 +0100 Subject: [PATCH] Remove obsolete snow leopard check. --- src/core/mac_startup.mm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/core/mac_startup.mm b/src/core/mac_startup.mm index cd9bc3366..d5730fd83 100644 --- a/src/core/mac_startup.mm +++ b/src/core/mac_startup.mm @@ -509,10 +509,6 @@ void DumpDictionary(CFDictionaryRef dict) { static const NSUInteger kFullScreenPrimary = 1 << 7; void EnableFullScreen(const QWidget& main_window) { - if (QSysInfo::MacintoshVersion == QSysInfo::MV_SNOWLEOPARD) { - return; // Unsupported on 10.6 - } - NSView* view = reinterpret_cast(main_window.winId()); NSWindow* window = [view window]; [window setCollectionBehavior:kFullScreenPrimary];