Index: trunk/src/route_style.c =================================================================== --- trunk/src/route_style.c (revision 19559) +++ trunk/src/route_style.c (revision 19560) @@ -164,6 +164,7 @@ void pcb_use_route_style(pcb_route_style_t * rst) { conf_set_design("design/line_thickness", "%$mS", rst->Thick); + conf_set_design("design/text_scale", "%d", rst->texts <= 0 ? 100 : rst->texts); conf_set_design("design/text_thickness", "%$mS", rst->textt); conf_set_design("design/via_thickness", "%$mS", rst->Diameter); conf_set_design("design/via_drilling_hole", "%$mS", rst->Hole); Index: trunk/src/vtroutestyle.h =================================================================== --- trunk/src/vtroutestyle.h (revision 19559) +++ trunk/src/vtroutestyle.h (revision 19560) @@ -11,6 +11,7 @@ typedef struct { pcb_coord_t Thick; /* line thickness */ pcb_coord_t textt; /* text thickness */ + pcb_coord_t texts; /* text scale */ pcb_coord_t Clearance; /* min. separation from other nets */ pcb_cardinal_t via_proto; /* via padstack prototype ID */ int via_proto_set; /* 1 if via_proto is set/valid, 0 for old file formats */