mirror of
https://github.com/electron/electron.git
synced 2026-02-06 21:25:10 -05:00
20 lines
365 B
Plaintext
20 lines
365 B
Plaintext
#import "bry_application.h"
|
|
|
|
@interface BRYApplication ()
|
|
|
|
@property (nonatomic, assign, getter = isHandlingSendEvent) BOOL handlingSendEvent;
|
|
|
|
@end
|
|
|
|
@implementation BRYApplication
|
|
|
|
@synthesize handlingSendEvent = _handlingSendEvent;
|
|
|
|
- (void)sendEvent:(NSEvent *)theEvent
|
|
{
|
|
base::mac::ScopedSendingEvent scopedSendingEvent;
|
|
[super sendEvent:theEvent];
|
|
}
|
|
|
|
@end
|