From: Mike Blumenkrantz Date: Tue, 10 Nov 2015 17:59:26 +0000 (-0500) Subject: clamp client to ABOVE layer when ending nocomp X-Git-Tag: upstream/0.20.0~56 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8c6bbe0d44e7355a43e40062baed73ac013c03a6;p=platform%2Fupstream%2Fenlightenment.git clamp client to ABOVE layer when ending nocomp should fix case where an "Always on Top" window toggles fullscreen --- diff --git a/src/bin/e_comp.c b/src/bin/e_comp.c index ce2d1e5..5d28691 100644 --- a/src/bin/e_comp.c +++ b/src/bin/e_comp.c @@ -354,7 +354,7 @@ _e_comp_nocomp_end(void) _e_comp_cb_nocomp_end(); if (e_comp->nocomp_ec) { - E_Layer layer = MAX(e_comp->nocomp_ec->saved.layer, E_LAYER_CLIENT_NORMAL); + E_Layer layer = MAX(e_comp->nocomp_ec->saved.layer, E_LAYER_CLIENT_ABOVE); Eina_Bool fs; fs = e_comp->nocomp_ec->fullscreen;