move comp shutdown before border shutdown to fix some hash failures

This commit is contained in:
Mike Blumenkrantz 2013-06-14 14:40:20 +01:00
parent c78f88b700
commit 3198e442ad
1 changed files with 1 additions and 1 deletions

View File

@ -1674,7 +1674,6 @@ _e_main_screens_init(void)
_e_main_shutdown(-1);
}
TS("E_Comp Init Done");
_e_main_shutdown_push(e_comp_shutdown);
TS("\tscreens: win");
if (!e_win_init())
@ -1751,6 +1750,7 @@ static int
_e_main_screens_shutdown(void)
{
e_win_shutdown();
e_comp_shutdown();
e_border_shutdown();
e_focus_shutdown();
e_exehist_shutdown();