projects
/
platform
/
upstream
/
enlightenment.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b1373fe
)
fix client resistance visibility check typo
author
Mike Blumenkrantz
<zmike@samsung.com>
Fri, 14 Mar 2014 13:51:26 +0000
(09:51 -0400)
committer
Mike Blumenkrantz
<zmike@samsung.com>
Fri, 14 Mar 2014 13:51:57 +0000
(09:51 -0400)
fix T1087
src/bin/e_resist.c
patch
|
blob
|
history
diff --git
a/src/bin/e_resist.c
b/src/bin/e_resist.c
index
4157c45
..
6489182
100644
(file)
--- 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);