From f9ea21e1724efefc002d9e3ac7c7d4e2aa661475 Mon Sep 17 00:00:00 2001 From: Chidambar Zinnoury Date: Sun, 5 Oct 2008 17:45:13 +0000 Subject: [PATCH] Check if current desktop is the same as previous one to prevent to prevent signals from being resent. SVN revision: 36454 --- src/modules/pager/e_mod_main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/pager/e_mod_main.c b/src/modules/pager/e_mod_main.c index f5bfbc2f5..9abcdcaf9 100644 --- a/src/modules/pager/e_mod_main.c +++ b/src/modules/pager/e_mod_main.c @@ -1981,6 +1981,7 @@ _pager_update_drop_position(Pager *p, Evas_Coord x, Evas_Coord y) evas_object_geometry_get(p->o_table, &xx, &yy, NULL, NULL); if (p->inst) e_box_align_pixel_offset_get(p->inst->gcc->o_box, &ox, &oy); pd = _pager_desk_at_coord(p, x + xx + ox, y + yy + oy); + if (pd == p->active_drop_pd) return; for (l = p->desks; l; l = l->next) { pd2 = l->data;