Index: tool_arc.c =================================================================== --- tool_arc.c (revision 29355) +++ tool_arc.c (revision 29356) @@ -57,7 +57,7 @@ pcb_crosshair.AttachedBox.State = PCB_CH_STATE_SECOND; pcb_crosshair.AttachedBox.Point1.X = pcb_crosshair.AttachedBox.Point2.X = pcb_crosshair.AttachedLine.Point1.X; pcb_crosshair.AttachedBox.Point1.Y = pcb_crosshair.AttachedBox.Point2.Y = pcb_crosshair.AttachedLine.Point1.Y; - pcb_tool_adjust_attached_objects(NULL); + pcb_tool_adjust_attached(NULL); } pcb_hid_notify_crosshair_change(&PCB->hidlib, pcb_true); } @@ -186,7 +186,7 @@ pcb_arc_get_end((pcb_arc_t *) ptr2, 0, &pcb_crosshair.AttachedBox.Point2.X, &pcb_crosshair.AttachedBox.Point2.Y); pcb_crosshair.AttachedBox.Point1.X = pcb_crosshair.AttachedBox.Point2.X; pcb_crosshair.AttachedBox.Point1.Y = pcb_crosshair.AttachedBox.Point2.Y; - pcb_tool_adjust_attached_objects(hl); + pcb_tool_adjust_attached(hl); if (--pcb_added_lines == 0) pcb_crosshair.AttachedBox.State = PCB_CH_STATE_SECOND; } Index: tool_arrow.c =================================================================== --- tool_arrow.c (revision 29355) +++ tool_arrow.c (revision 29356) @@ -60,7 +60,7 @@ } /* Called some time after the click if there was a release but no second click - a.k.a. finalize single click (some things are already done in pcb_notify_mode + a.k.a. finalize single click (some things are already done in pcb_press_mode at the initial click event) */ static void click_timer_cb(pcb_hidval_t hv) { Index: tool_line.c =================================================================== --- tool_line.c (revision 29355) +++ tool_line.c (revision 29356) @@ -70,7 +70,7 @@ pcb_crosshair.AttachedLine.State = PCB_CH_STATE_SECOND; pcb_crosshair.AttachedLine.Point1.X = pcb_crosshair.AttachedLine.Point2.X = pcb_crosshair.AttachedBox.Point1.X; pcb_crosshair.AttachedLine.Point1.Y = pcb_crosshair.AttachedLine.Point2.Y = pcb_crosshair.AttachedBox.Point1.Y; - pcb_tool_adjust_attached_objects(NULL); + pcb_tool_adjust_attached(NULL); } else { if (conf_core.editor.auto_drc) { @@ -441,7 +441,7 @@ pcb_crosshair.AttachedLine.Point1.Y = pcb_crosshair.AttachedLine.Point2.Y = ptr2->Point2.Y; } pcb_crosshair_grid_fit(pcb_crosshair.X, pcb_crosshair.Y); - pcb_tool_adjust_attached_objects(hl); + pcb_tool_adjust_attached(hl); if (--pcb_added_lines == 0) { pcb_crosshair.AttachedLine.State = PCB_CH_STATE_SECOND; last_layer = PCB_CURRLAYER(pcb);