From 3dc340b4dd9de1b2ed13d201aab6aba2ec141a6c Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Tue, 10 Nov 2015 12:59:26 -0500 Subject: [PATCH] clamp client to ABOVE layer when ending nocomp should fix case where an "Always on Top" window toggles fullscreen --- src/bin/e_comp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp.c b/src/bin/e_comp.c index ce2d1e577..5d28691b7 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;