Merge pull request #7053 from electron/launch-from-notification
Send notification info to app.ready, on macOS
This commit is contained in:
commit
b6079ff90b
8 changed files with 28 additions and 11 deletions
|
@ -489,8 +489,8 @@ void App::OnWillFinishLaunching() {
|
|||
Emit("will-finish-launching");
|
||||
}
|
||||
|
||||
void App::OnFinishLaunching() {
|
||||
Emit("ready");
|
||||
void App::OnFinishLaunching(const base::DictionaryValue& launch_info) {
|
||||
Emit("ready", launch_info);
|
||||
}
|
||||
|
||||
void App::OnAccessibilitySupportChanged() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue