umm no. this is already done elsewhere fir xinerama style multi-head.

for true multihead there is nothing, but this code sure as hell doesnt
do it :) remove.



SVN revision: 71612
This commit is contained in:
Carsten Haitzler 2012-06-01 01:10:32 +00:00
parent 0dc7322d6d
commit e0a1aea90e
1 changed files with 0 additions and 8 deletions

View File

@ -1535,8 +1535,6 @@ _e_zone_cb_mouse_in(void *data,
E_Event_Zone_Edge *zev;
E_Zone_Edge edge;
E_Zone *zone;
Eina_List *l;
E_Screen *scr;
ev = event;
zone = data;
@ -1544,12 +1542,6 @@ _e_zone_cb_mouse_in(void *data,
edge = _e_zone_detect_edge(zone, ev->win);
if (edge == E_ZONE_EDGE_NONE) return ECORE_CALLBACK_PASS_ON;
EINA_LIST_FOREACH(e_xinerama_screens_all_get(), l, scr)
{
if (abs(scr->x - ev->x) < 2) return ECORE_CALLBACK_PASS_ON;
if (abs(scr->y - ev->y) < 2) return ECORE_CALLBACK_PASS_ON;
}
zev = E_NEW(E_Event_Zone_Edge, 1);
zev->zone = zone;
zev->edge = edge;