put the e sys stuff 5 second in - not 10.

SVN revision: 26732
This commit is contained in:
Carsten Haitzler 2006-10-21 11:19:40 +00:00
parent 3c237a778c
commit 25b70e1548
1 changed files with 2 additions and 2 deletions

View File

@ -40,8 +40,8 @@ e_sys_init(void)
/* this is not optimal - but it does work cleanly */
_e_sys_exe_exit_handler = ecore_event_handler_add(ECORE_EXE_EVENT_DEL,
_e_sys_cb_exit, NULL);
/* delay this for 10.0 seconds while the rest of e starts up */
ecore_timer_add(10.0, _e_sys_cb_timer, NULL);
/* delay this for 5.0 seconds while the rest of e starts up */
ecore_timer_add(5.0, _e_sys_cb_timer, NULL);
return 1;
}