Index: trunk/src/board.c =================================================================== --- trunk/src/board.c (revision 34437) +++ trunk/src/board.c (revision 34438) @@ -338,14 +338,6 @@ } } -/* sets a clearance width */ -void pcb_board_set_clearance(rnd_coord_t Width) -{ - if (Width <= PCB_MAX_THICKNESS) { - rnd_conf_set_design("design/clearance", "%$mS", Width); - } -} - /* sets a text scaling */ void pcb_board_set_text_scale(int Scale) { Index: trunk/src/board.h =================================================================== --- trunk/src/board.h (revision 34437) +++ trunk/src/board.h (revision 34438) @@ -151,9 +151,6 @@ /* sets a new line thickness */ void pcb_board_set_line_width(rnd_coord_t Size); -/* sets a clearance width */ -void pcb_board_set_clearance(rnd_coord_t Width); - /* sets a text scaling */ void pcb_board_set_text_scale(int Scale); Index: trunk/src/gui_act.c =================================================================== --- trunk/src/gui_act.c (revision 34437) +++ trunk/src/gui_act.c (revision 34438) @@ -563,10 +563,7 @@ switch(*cmd) { case '\0': do_select:; - pcb_board_set_line_width(rts->Thick); - pcb_board_set_clearance(rts->Clearance); -TODO("pstk #21: we are not setting the proto here?!"); -TODO("pstk #21: can't we just remove these from board property as they are in the config"); + pcb_use_route_style(rts); break; case 'd': /* del */ res->type = FGW_INT;