elm: call ecore_app_args_set() after quicklaunch fork

ensure that apps get expected behavior when calling args_get()

@fix
This commit is contained in:
Mike Blumenkrantz 2018-02-07 13:30:37 -05:00
parent 49e47ac310
commit b7bec2ba9a
1 changed files with 1 additions and 0 deletions

View File

@ -1130,6 +1130,7 @@ elm_quicklaunch_fork(int argc,
perror("could not fork");
return 0;
}
ecore_app_args_set(argc, (const char**)argv);
if (postfork_func) postfork_func(postfork_data);
eina_main_loop_define();