Index: routest.c =================================================================== --- routest.c (revision 32102) +++ routest.c (revision 32103) @@ -180,7 +180,7 @@ RND_DAD_BEGIN_HBOX(rst.sub.dlg); RND_DAD_COMPFLAG(rst.sub.dlg, RND_HATF_HIDE); rst.whbox[n] = RND_DAD_CURRENT(rst.sub.dlg); - RND_DAD_BOOL(rst.sub.dlg, ""); + RND_DAD_BOOL(rst.sub.dlg); rst.wchk[n] = RND_DAD_CURRENT(rst.sub.dlg); RND_DAD_CHANGE_CB(rst.sub.dlg, rst_select_cb); RND_DAD_LABEL(rst.sub.dlg, "unused"); Index: routest_dlg.c =================================================================== --- routest_dlg.c (revision 32102) +++ routest_dlg.c (revision 32103) @@ -263,7 +263,7 @@ RND_DAD_CHANGE_CB(rstdlg_ctx.dlg, rst_change_cb); RND_DAD_LABEL(rstdlg_ctx.dlg, "Line thick.:"); - RND_DAD_COORD(rstdlg_ctx.dlg, ""); + RND_DAD_COORD(rstdlg_ctx.dlg); rstdlg_ctx.wlineth = RND_DAD_CURRENT(rstdlg_ctx.dlg); RND_DAD_HELP(rstdlg_ctx.dlg, "Thickness of line/arc objects"); RND_DAD_MINMAX(rstdlg_ctx.dlg, 1, RND_MAX_COORD); @@ -270,7 +270,7 @@ RND_DAD_CHANGE_CB(rstdlg_ctx.dlg, rst_change_cb); RND_DAD_LABEL(rstdlg_ctx.dlg, "Text scale:"); - RND_DAD_COORD(rstdlg_ctx.dlg, ""); + RND_DAD_COORD(rstdlg_ctx.dlg); rstdlg_ctx.wtxtscale = RND_DAD_CURRENT(rstdlg_ctx.dlg); RND_DAD_HELP(rstdlg_ctx.dlg, "Text size scale in %; 100 means normal size"); RND_DAD_MINMAX(rstdlg_ctx.dlg, 1, RND_MAX_COORD); @@ -277,7 +277,7 @@ RND_DAD_CHANGE_CB(rstdlg_ctx.dlg, rst_change_cb); RND_DAD_LABEL(rstdlg_ctx.dlg, "Clearance:"); - RND_DAD_COORD(rstdlg_ctx.dlg, ""); + RND_DAD_COORD(rstdlg_ctx.dlg); rstdlg_ctx.wclr = RND_DAD_CURRENT(rstdlg_ctx.dlg); RND_DAD_HELP(rstdlg_ctx.dlg, "Object clearance: any object placed with this style\nwill clear this much from sorrunding clearing-enabled polygons\n(unless the object is joined to the polygon)"); RND_DAD_MINMAX(rstdlg_ctx.dlg, 1, RND_MAX_COORD); @@ -284,7 +284,7 @@ RND_DAD_CHANGE_CB(rstdlg_ctx.dlg, rst_change_cb); RND_DAD_LABEL(rstdlg_ctx.dlg, "Text thick.:"); - RND_DAD_COORD(rstdlg_ctx.dlg, ""); + RND_DAD_COORD(rstdlg_ctx.dlg); rstdlg_ctx.wtxtth = RND_DAD_CURRENT(rstdlg_ctx.dlg); RND_DAD_HELP(rstdlg_ctx.dlg, "Text stroke thickness;\nif 0 use the default heuristics that\ncalculates it from text scale"); RND_DAD_MINMAX(rstdlg_ctx.dlg, 1, RND_MAX_COORD); @@ -291,7 +291,7 @@ RND_DAD_CHANGE_CB(rstdlg_ctx.dlg, rst_change_cb); RND_DAD_LABEL(rstdlg_ctx.dlg, "*Via hole:"); - RND_DAD_COORD(rstdlg_ctx.dlg, ""); + RND_DAD_COORD(rstdlg_ctx.dlg); rstdlg_ctx.wviahole = RND_DAD_CURRENT(rstdlg_ctx.dlg); RND_DAD_HELP(rstdlg_ctx.dlg, "Via hole diameter\nwarning: will be replaced with the padstack selector"); RND_DAD_MINMAX(rstdlg_ctx.dlg, 1, RND_MAX_COORD); @@ -298,7 +298,7 @@ RND_DAD_CHANGE_CB(rstdlg_ctx.dlg, rst_change_cb); RND_DAD_LABEL(rstdlg_ctx.dlg, "*Via ring:"); - RND_DAD_COORD(rstdlg_ctx.dlg, ""); + RND_DAD_COORD(rstdlg_ctx.dlg); rstdlg_ctx.wviaring = RND_DAD_CURRENT(rstdlg_ctx.dlg); RND_DAD_HELP(rstdlg_ctx.dlg, "Via ring diameter\nwarning: will be replaced with the padstack selector"); RND_DAD_MINMAX(rstdlg_ctx.dlg, 1, RND_MAX_COORD);