discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=16ad939ecb69380a9a3b57a4ffe21969c85b93a9
commit 16ad939ecb69380a9a3b57a4ffe21969c85b93a9 Author: Mike Blumenkrantz <[email protected]> Date: Sun May 11 12:58:29 2014 -0400 reorder comp_x init --- src/bin/e_comp_x.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/bin/e_comp_x.c b/src/bin/e_comp_x.c index 96045cb..77a6479 100644 --- a/src/bin/e_comp_x.c +++ b/src/bin/e_comp_x.c @@ -5089,12 +5089,6 @@ _e_comp_x_screens_setup(void) EINTERN Eina_Bool e_comp_x_init(void) { - clients_win_hash = eina_hash_int32_new(NULL); - damages_hash = eina_hash_int32_new(NULL); - alarm_hash = eina_hash_int32_new(NULL); - frame_extents = eina_hash_string_superfast_new(free); - - if (!ecore_x_init(NULL)) { e_error_message_show(_("Enlightenment cannot initialize Ecore_X!\n")); @@ -5129,6 +5123,11 @@ e_comp_x_init(void) } ecore_x_screensaver_event_listen_set(1); + clients_win_hash = eina_hash_int32_new(NULL); + damages_hash = eina_hash_int32_new(NULL); + alarm_hash = eina_hash_int32_new(NULL); + frame_extents = eina_hash_string_superfast_new(free); + E_LIST_HANDLER_APPEND(handlers, E_EVENT_COMP_OBJECT_ADD, _e_comp_x_object_add, NULL); E_LIST_HANDLER_APPEND(handlers, ECORE_X_EVENT_WINDOW_DESTROY, _e_comp_x_destroy, NULL); --
