From 3a77e8a2e928583c049a21db334c7c322457f448 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Thu, 30 Jul 2015 13:36:42 -0400 Subject: [PATCH] unset DISPLAY on xwayland module shutdown fixes loading across restarts --- src/modules/xwayland/e_mod_main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/xwayland/e_mod_main.c b/src/modules/xwayland/e_mod_main.c index 714915272..5926ad691 100644 --- a/src/modules/xwayland/e_mod_main.c +++ b/src/modules/xwayland/e_mod_main.c @@ -419,6 +419,7 @@ e_modapi_shutdown(E_Module *m EINA_UNUSED) if (exs->sig_hdlr) ecore_event_handler_del(exs->sig_hdlr); free(exs); + e_util_env_set("DISPLAY", NULL); return 1; }