discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=556c21030c1066680465bf1841086fcb44528bec

commit 556c21030c1066680465bf1841086fcb44528bec
Author: Mike Blumenkrantz <[email protected]>
Date:   Sat Jul 19 15:07:22 2014 -0400

    handle nocomp eval for visible clients stacked over fullscreen client
    
    probably fixes T1409, T1316, T1388
---
 src/bin/e_comp.c | 18 +++++++++++++++++-
 1 file changed, 17 insertions(+), 1 deletion(-)

diff --git a/src/bin/e_comp.c b/src/bin/e_comp.c
index 389e6fa..fd5ed9a 100644
--- a/src/bin/e_comp.c
+++ b/src/bin/e_comp.c
@@ -469,7 +469,23 @@ nocomp:
      {
         if (conf->nocomp_fs)
           {
-             if ((!c->nocomp) && (!c->nocomp_override > 0))
+             if (c->nocomp && c->nocomp_ec)
+               {
+                  E_CLIENT_REVERSE_FOREACH(c, ec)
+                    {
+                       if (ec == c->nocomp_ec) break;
+                       if (e_client_is_stacking(ec)) continue;
+                       if (e_object_is_del(E_OBJECT(ec)) || 
(!e_client_util_desk_visible(ec, e_desk_current_get(ec->zone)))) continue;
+                       if (e_config->allow_above_fullscreen && 
(!e_config->mode.presentation))
+                         {
+                            _e_comp_nocomp_end(c);
+                            break;
+                         }
+                       else
+                         evas_object_stack_below(ec->frame, 
c->nocomp_ec->frame);
+                    }
+               }
+             else if ((!c->nocomp) && (!c->nocomp_override > 0))
                {
                   if (!c->nocomp_delay_timer)
                     c->nocomp_delay_timer = ecore_timer_add(1.0, 
_e_comp_cb_nocomp_begin_timeout, c);

-- 


Reply via email to