Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -283,11 +283,8 @@ - (void)applicationDidFinishLaunching:(NSNotification *)aNotification
// but it doesn't get activated, so this is needed:
LOG("-> need to active application");
dispatch_async(dispatch_get_main_queue(), ^{
[NSApp performSelector: @selector(activate)];
[NSApp activateIgnoringOtherApps:YES];
});
// TODO: performSelector is used only to avoid a compiler
// warning with the 13.3 SDK. After updating to SDK 14
// this can be converted to a standard call.
}
}

Expand Down