Skip to content

Instantly share code, notes, and snippets.

@Wevah
Created May 3, 2012 19:34
Show Gist options
  • Save Wevah/2588578 to your computer and use it in GitHub Desktop.
Save Wevah/2588578 to your computer and use it in GitHub Desktop.
Prevent clicks in a popover from activating an LSUIElement app
- (void)sendEvent:(NSEvent *)event {
if ([event type] == NSAppKitDefined && ([event subtype] & NSApplicationActivatedEventType) && [[event window] respondsToSelector:@selector(_popover)])
return;
[super sendEvent:event];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment