Index: trunk/src/crosshair.c =================================================================== --- trunk/src/crosshair.c (revision 32816) +++ trunk/src/crosshair.c (revision 32817) @@ -338,7 +338,7 @@ rnd_render->set_color(pcb_crosshair.GC, &conf_core.appearance.color.drc); pcb_draw_wireframe_line(pcb_crosshair.GC,line.Point1.X, line.Point1.Y, line.Point2.X, line.Point2.Y, - line.Thickness + 2 * (conf_core.design.bloat + 1), 0); + line.Thickness + 2 * (conf_core.design.clearance + 1), 0); rnd_render->set_color(pcb_crosshair.GC, &conf_core.appearance.color.attached); } break; @@ -359,7 +359,7 @@ /* Draw the DRC outline if it is enabled */ if (conf_core.editor.show_drc) { rnd_render->set_color(pcb_crosshair.GC, &conf_core.appearance.color.drc); - arc.Thickness += 2 * (conf_core.design.bloat + 1); + arc.Thickness += 2 * (conf_core.design.clearance + 1); pcb_draw_wireframe_arc(pcb_crosshair.GC, &arc, arc.Thickness); rnd_render->set_color(pcb_crosshair.GC, &conf_core.appearance.color.attached); } @@ -411,7 +411,7 @@ if (conf_core.editor.show_drc) { rnd_render->set_color(pcb_crosshair.GC, &conf_core.appearance.color.drc); pcb_draw_wireframe_line(pcb_crosshair.GC,point1->X, point1->Y, point2.X, - point2.Y,line->Thickness + 2 * (conf_core.design.bloat + 1), 0); + point2.Y,line->Thickness + 2 * (conf_core.design.clearance + 1), 0); rnd_render->set_color(pcb_crosshair.GC, &conf_core.appearance.color.attached); } } @@ -465,7 +465,7 @@ /* Draw the DRC outline if it is enabled */ if (conf_core.editor.show_drc) { rnd_render->set_color(pcb_crosshair.GC, &conf_core.appearance.color.drc); - arc.Thickness += 2 * (conf_core.design.bloat + 1); + arc.Thickness += 2 * (conf_core.design.clearance + 1); pcb_draw_wireframe_arc(pcb_crosshair.GC, &arc, arc.Thickness); rnd_render->set_color(pcb_crosshair.GC, &conf_core.appearance.color.attached); } Index: trunk/src/obj_line_drcenf.c =================================================================== --- trunk/src/obj_line_drcenf.c (revision 32816) +++ trunk/src/obj_line_drcenf.c (revision 32817) @@ -243,7 +243,7 @@ line1.Flags = line2.Flags = pcb_no_flags(); line1.parent_type = line2.parent_type = PCB_PARENT_LAYER; line1.parent.layer = line2.parent.layer = PCB_CURRLAYER(PCB); - line1.Thickness = conf_core.design.line_thickness + 2 * (conf_core.design.bloat + 1); + line1.Thickness = conf_core.design.line_thickness + 2 * (conf_core.design.clearance + 1); line2.Thickness = line1.Thickness; line1.Clearance = line2.Clearance = 0; line1.Point1.X = start->X; Index: trunk/src/route.c =================================================================== --- trunk/src/route.c (revision 32816) +++ trunk/src/route.c (revision 32817) @@ -757,7 +757,7 @@ *---------------------------------------------------------*/ void pcb_route_draw_drc(pcb_route_t *p_route, rnd_hid_gc_t GC) { - rnd_coord_t thickness = p_route->thickness + 2 * conf_core.design.bloat; + rnd_coord_t thickness = p_route->thickness + 2 * conf_core.design.clearance; int i; rnd_render->set_color(GC, &conf_core.appearance.color.drc); Index: trunk/src_plugins/rubberband_orig/rubberband.c =================================================================== --- trunk/src_plugins/rubberband_orig/rubberband.c (revision 32816) +++ trunk/src_plugins/rubberband_orig/rubberband.c (revision 32817) @@ -1207,7 +1207,7 @@ /* Draw the DRC outline if it is enabled */ if (conf_core.editor.show_drc) { rnd_render->set_color(pcb_crosshair.GC, &conf_core.appearance.color.drc); - pcb_draw_wireframe_line(pcb_crosshair.GC, x[0], y[0], x[1], y[1], ptr->Line->Thickness + 2 * (conf_core.design.bloat + 1), 0); + pcb_draw_wireframe_line(pcb_crosshair.GC, x[0], y[0], x[1], y[1], ptr->Line->Thickness + 2 * (conf_core.design.clearance + 1), 0); } } else { Index: trunk/src_plugins/tool_std/tool_arc.c =================================================================== --- trunk/src_plugins/tool_std/tool_arc.c (revision 32816) +++ trunk/src_plugins/tool_std/tool_arc.c (revision 32817) @@ -145,7 +145,7 @@ pcb_xordraw_attached_arc(conf_core.design.line_thickness); if (conf_core.editor.show_drc) { rnd_render->set_color(pcb_crosshair.GC, &conf_core.appearance.color.drc); - pcb_xordraw_attached_arc(conf_core.design.line_thickness + 2 * (conf_core.design.bloat + 1)); + pcb_xordraw_attached_arc(conf_core.design.line_thickness + 2 * (conf_core.design.clearance + 1)); rnd_render->set_color(pcb_crosshair.GC, &conf_core.appearance.color.attached); } } @@ -164,7 +164,7 @@ pcb_draw_wireframe_line(pcb_crosshair.GC, pcb_crosshair.X, pcb_crosshair.Y, pcb_crosshair.X, pcb_crosshair.Y, - conf_core.design.line_thickness + (2 * conf_core.design.bloat), 0); + conf_core.design.line_thickness + (2 * conf_core.design.clearance), 0); rnd_render->set_color(pcb_crosshair.GC, &conf_core.appearance.color.attached); } } Index: trunk/src_plugins/tool_std/tool_line.c =================================================================== --- trunk/src_plugins/tool_std/tool_line.c (revision 32816) +++ trunk/src_plugins/tool_std/tool_line.c (revision 32817) @@ -389,7 +389,7 @@ pcb_draw_wireframe_line(pcb_crosshair.GC, pcb_crosshair.X, pcb_crosshair.Y, pcb_crosshair.X, pcb_crosshair.Y, - conf_core.design.line_thickness + (2 * conf_core.design.bloat), 0); + conf_core.design.line_thickness + (2 * conf_core.design.clearance), 0); rnd_render->set_color(pcb_crosshair.GC, &conf_core.appearance.color.attached); } }