Index: trunk/src/obj_text.h =================================================================== --- trunk/src/obj_text.h (revision 709) +++ trunk/src/obj_text.h (revision 710) @@ -33,7 +33,6 @@ typedef struct camv_text_s { CAMV_ANY_PRIMITIVE_FIELDS; rnd_coord_t x, y; /* placement: specify center bottom point of text */ - int size; double rot; /* in degrees */ char *s; Index: trunk/src_plugins/std_tools/tool_mline.c =================================================================== --- trunk/src_plugins/std_tools/tool_mline.c (revision 709) +++ trunk/src_plugins/std_tools/tool_mline.c (revision 710) @@ -31,7 +31,6 @@ o->text.x = (camv_tool_mline.x1 + camv_tool_mline.x2) / 2; o->text.y = (camv_tool_mline.y1 + camv_tool_mline.y2) / 2; o->text.rot = atan2(camv_tool_mline.y2 - camv_tool_mline.y1, camv_tool_mline.x2 - camv_tool_mline.x1) * RND_RAD_TO_DEG; - o->text.size = 64; o->text.s = rnd_strdup_printf("%m+%.03$$mS", rnd_conf.editor.grid_unit->allow, (rnd_coord_t)dist); camv_text_update(hl, &o->text, ly);