diff options
author | Hannes Janetzek <hannes.janetzek@gmail.com> | 2012-12-21 15:54:45 +0000 |
---|---|---|
committer | Hannes Janetzek <hannes.janetzek@gmail.com> | 2012-12-21 15:54:45 +0000 |
commit | 303abf60def1c2574136cbaabc63602172f84e6c (patch) | |
tree | a36438b5f079690ad37c81c31c526a397614dd7e | |
parent | c7f20b65c518333149f1d4a4881604e768ca6db3 (diff) | |
download | enlightenment-303abf60def1c2574136cbaabc63602172f84e6c.tar.gz enlightenment-303abf60def1c2574136cbaabc63602172f84e6c.tar.xz enlightenment-303abf60def1c2574136cbaabc63602172f84e6c.zip |
e17/shelf: fix wrong autohide with systray on second zone
SVN revision: 81557
-rw-r--r-- | src/bin/e_shelf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/e_shelf.c b/src/bin/e_shelf.c index 500729225..3de432da1 100644 --- a/src/bin/e_shelf.c +++ b/src/bin/e_shelf.c @@ -1967,7 +1967,7 @@ _e_shelf_cb_mouse_in(void *data, int type, void *event) if (!inside) { inside = E_INSIDE(ev->root.x, ev->root.y, es->zone->x, es->zone->y, es->zone->w + 4, es->zone->h + 4); - x = ev->root.x - es->zone->x, y = ev->root.y - es->zone->x; + x = ev->root.x - es->zone->x, y = ev->root.y - es->zone->y; if (inside) inside = ( ((E_INSIDE(x, y, es->x, es->y, es->w, es->h)) || |