clamp client to ABOVE layer when ending nocomp
authorMike Blumenkrantz <zmike@osg.samsung.com>
Tue, 10 Nov 2015 17:59:26 +0000 (12:59 -0500)
committerMike Blumenkrantz <zmike@osg.samsung.com>
Tue, 10 Nov 2015 17:59:26 +0000 (12:59 -0500)
should fix case where an "Always on Top" window toggles fullscreen

src/bin/e_comp.c

index ce2d1e5..5d28691 100644 (file)
@@ -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;