Index: trunk/src/obj_hash.h =================================================================== --- trunk/src/obj_hash.h (revision 35069) +++ trunk/src/obj_hash.h (revision 35070) @@ -98,8 +98,8 @@ { pcb_hash_tr_coords(tr1, &x1, &y1, x1, y1); pcb_hash_tr_coords(tr2, &x2, &y2, x2, y2); - if (x1 != x2) return rnd_true; - if (y1 != y2) return rnd_true; + if (rnd_coord_abs(x1 - x2) > 4) return rnd_true; + if (rnd_coord_abs(y1 - y2) > 4) return rnd_true; return rnd_false; }