Index: toolpath.c =================================================================== --- toolpath.c (revision 28430) +++ toolpath.c (revision 28431) @@ -174,10 +174,10 @@ pcb_pstk_t *ps, ps_tmp; pcb_rtree_it_t it; -TODO(": thermals: find out if any of our layers has thermal for the pin and if so, use that layer") for(ps = (pcb_pstk_t *)pcb_r_first(pcb->Data->padstack_tree, &it); ps != NULL; ps = (pcb_pstk_t *)pcb_r_next(&it)) { memcpy(&ps_tmp, ps, sizeof(ps_tmp)); - ps_tmp.Clearance = 1; + ps_tmp.Clearance = 10; + ps_tmp.thermals.used = 0; pcb_poly_sub_obj(pcb->Data, layer, result->fill, PCB_OBJ_PSTK, &ps_tmp); } pcb_r_end(&it);