mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-13 10:04:04 +01:00
c8969630f3
Introduced a real Property List Editor. Fixed Theme manager engine. Other minor fixes
27 lines
607 B
Objective-C
27 lines
607 B
Objective-C
//
|
|
// NSWindowFix.m
|
|
// Clover
|
|
//
|
|
// Created by vector sigma on 29/11/2019.
|
|
// Copyright © 2019 CloverHackyColor. All rights reserved.
|
|
//
|
|
|
|
#import "NSWindowFix.h"
|
|
|
|
@implementation NSWindow (popoverFix)
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Wobjc-protocol-method-implementation"
|
|
- (BOOL)canBecomeKeyWindow {
|
|
/*
|
|
if (floor(kCFCoreFoundationVersionNumber) < kCFCoreFoundationVersionNumber10_11
|
|
&& [[self className] isEqualToString:@"NSStatusBarWindow"]) {
|
|
return YES;
|
|
}
|
|
return [self canBecomeKeyWindow];
|
|
*/
|
|
|
|
return YES;
|
|
}
|
|
#pragma clang diagnostic pop
|
|
@end
|