discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=7cc9e7db3bf7cad18b300ea934f07e30cce4b6c8
commit 7cc9e7db3bf7cad18b300ea934f07e30cce4b6c8 Author: Mike Blumenkrantz <zm...@enlightenment.org> Date: Wed Nov 20 01:33:56 2013 -0500 force render queue on nocomp window hide without this, it was possible to break the compositor by enabling options which prevent unfullscreening a window on vdesk flip, which causes nocomp mode to remain permanently enabled, even after the window has closed --- src/bin/e_comp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/e_comp.c b/src/bin/e_comp.c index d1f2898..4fef776 100644 --- a/src/bin/e_comp.c +++ b/src/bin/e_comp.c @@ -2746,6 +2746,8 @@ _e_comp_win_hide(E_Comp_Win *cw) ecore_timer_del(cw->update_timeout); cw->update_timeout = NULL; } + if (cw->nocomp) + _e_comp_render_queue(cw->c); if (conf->keep_unmapped && cw->win) { if (!cw->delete_me) --