Hello, Sorry about the second email, this goes with the last. The attached adds the call into etox to set just the font size without knowing the font name.
Thanks, dan
Index: Etox.h =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/etox/src/Etox.h,v retrieving revision 1.45 diff -r1.45 Etox.h 128a129 > void etox_context_set_font_size(Etox_Context * context, int size); Index: etox_context.c =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/etox/src/etox_context.c,v retrieving revision 1.17 diff -r1.17 etox_context.c 352a353,365 > * etox_context_set_font_size - set the font size for the context > * @context: the context to set the size too > * @size: the size to set > * @return Returns no value > */ > void etox_context_set_font_size(Etox_Context *context, int size) > { > CHECK_PARAM_POINTER("context", context); > > context->font_size = size; > } > > /**