cocoa: fix build on 10.9

Use -isInFullScreenMode instead of the property introduced with the 10.10 SDK.
This commit is contained in:
Stefano Pigozzi 2015-01-02 20:52:46 +01:00 committed by Diogo Franco (Kovensky)
parent f3e515c790
commit 1eb4e90161
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@
- (void)clear
{
if (self.inFullScreenMode) {
if ([self isInFullScreenMode]) {
self.clearing = YES;
[self exitFullScreenModeWithOptions:nil];
}