e: fix fps_show in comp being toggled on startup

comp module has an handler on SIGUSR2 to toggle showing fps.
On startup, enlightenment_init sends a SIGUSR2 to its parent so that it
exists of pause() (in e_main.c:537) and finish main init.
Sending SIGUSR1 instead of SIGUSR2 is more of a workaround than a fix.

SVN revision: 67249
This commit is contained in:
Boris Faure 2012-01-16 20:07:15 +00:00
parent a22c080170
commit d651ea3d68
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ static Ecore_Ipc_Server *server = NULL;
static Eina_Bool static Eina_Bool
delayed_ok(void *data __UNUSED__) delayed_ok(void *data __UNUSED__)
{ {
kill(getppid(), SIGUSR2); kill(getppid(), SIGUSR1);
return ECORE_CALLBACK_CANCEL; return ECORE_CALLBACK_CANCEL;
} }