use stderr messages when failing to init X compositor

can't show error dialogs when we're about to exit, may as well print something useful

fix T2182
This commit is contained in:
Mike Blumenkrantz 2015-03-06 15:00:52 -05:00
parent 691c5187c2
commit 961a56ea10
1 changed files with 3 additions and 7 deletions

View File

@ -5014,9 +5014,7 @@ _e_comp_x_setup(E_Comp *c, Ecore_X_Window root, int w, int h)
res = ecore_x_screen_is_composited(c->num);
if (res)
{
e_util_dialog_internal(_("Compositor Error"),
_("Another compositor is already running<br>"
"on your display server."));
ERR(_("Another compositor is already running on your display server."));
return EINA_FALSE;
}
if (!ecore_x_window_manage(root)) return EINA_FALSE;
@ -5035,10 +5033,8 @@ _e_comp_x_setup(E_Comp *c, Ecore_X_Window root, int w, int h)
c->win = ecore_x_composite_render_window_enable(root);
if (!c->win)
{
e_util_dialog_internal(_("Compositor Error"),
_("Your display server does not support the<br>"
"compositor overlay window. This is needed<br>"
"for it to function."));
ERR(_("Your display server does not support the compositor overlay window.\n"
"This is needed for Enlightenment to function."));
return EINA_FALSE;
}
c->man = e_manager_new(root, c, w, h);