Index: rubberband.c =================================================================== --- rubberband.c (revision 12349) +++ rubberband.c (revision 12350) @@ -1017,15 +1017,15 @@ if (PCB_FLAG_TEST(PCB_FLAG_RAT, ptr->Line)) { pcb_gui->set_color(pcb_crosshair.GC, conf_core.appearance.color.rat); - pcb_draw_wireframe_line(pcb_crosshair.GC,x[0],y[0],x[1],y[1], ptr->Line->Thickness); + pcb_draw_wireframe_line(pcb_crosshair.GC,x[0],y[0],x[1],y[1], ptr->Line->Thickness, 0); } else if(direct || (conf_core.editor.move_linepoint_uses_route == 0)) { pcb_gui->set_color(pcb_crosshair.GC,ptr->Layer->meta.real.color); - pcb_draw_wireframe_line(pcb_crosshair.GC,x[0],y[0],x[1],y[1], ptr->Line->Thickness); + pcb_draw_wireframe_line(pcb_crosshair.GC,x[0],y[0],x[1],y[1], ptr->Line->Thickness, 0); /* Draw the DRC outline if it is enabled */ if (conf_core.editor.show_drc) { pcb_gui->set_color(pcb_crosshair.GC, conf_core.appearance.color.cross); - pcb_draw_wireframe_line(pcb_crosshair.GC,x[0],y[0],x[1],y[1],ptr->Line->Thickness + 2 * (PCB->Bloat + 1) ); + pcb_draw_wireframe_line(pcb_crosshair.GC,x[0],y[0],x[1],y[1],ptr->Line->Thickness + 2 * (PCB->Bloat + 1), 0); } } else {