discomfitor pushed a commit to branch master.

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

commit a6148e5e568bd625204ceef5ac7f5f10d83a9337
Author: Mike Blumenkrantz <[email protected]>
Date:   Fri Mar 14 09:51:26 2014 -0400

    fix client resistance visibility check typo
    
    fix T1087
---
 src/bin/e_resist.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/e_resist.c b/src/bin/e_resist.c
index 4157c45..6489182 100644
--- a/src/bin/e_resist.c
+++ b/src/bin/e_resist.c
@@ -58,7 +58,7 @@ e_resist_client_position(E_Comp *c, Eina_List *skiplist,
    /* here if need be - ie xinerama middle between screens and panels etc. */
    E_CLIENT_FOREACH(c, ec)
      {
-        if (e_client_util_ignored_get(ec) || 
evas_object_visible_get(ec->frame)) continue;
+        if (e_client_util_ignored_get(ec) || 
(!evas_object_visible_get(ec->frame))) continue;
         if (ec->offer_resistance && (!eina_list_data_find(skiplist, ec)))
           {
              OBSTACLE(ec->x, ec->y, ec->w, ec->h, e_config->window_resist);

-- 


Reply via email to