Cocoa: Allow undecorated windows to become main

This commit is contained in:
Camilla Berglund 2017-03-16 15:23:59 +01:00
parent 27a8b3c17b
commit 7410346c5c
1 changed files with 5 additions and 0 deletions

View File

@ -777,6 +777,11 @@ static const NSRange kEmptyRange = { NSNotFound, 0 };
return YES;
}
- (BOOL)canBecomeMainWindow
{
return YES;
}
@end