Commit e2192edf authored by Claes Sjofors's avatar Claes Sjofors

Ge: bugfix in fonts for language sv_se

parent f7eab682
......@@ -109,4 +109,5 @@
081024 cs xtthelp New program co_help to view helptexts.
081124 cs qcom Quota check for max number of buffered messages in a queue added.
090224 cs xtthelp New home button in help window.
090506 cs pwrb Bugfix in Max object. Default values were wrong and didn't work for negative input values.
\ No newline at end of file
090506 cs pwrb Bugfix in Max object. Default values were wrong and didn't work for negative input values.
090519 cs rtmon New help file for runtime monitor, and pushbutton for reset runtime.
\ No newline at end of file
......@@ -131,4 +131,5 @@
090512 cs ge Bugfix in ge editor, navigator palette wasn't destroyed at exit.
090518 cs xtt More flexible layout of operator buttons. NoFastAvail not used any more.
090518 cs xtt Bugfix in xtt termination. Free in wrong order could cause segfault.
090518 cs xtt Advanced user set as default, not set with option -d.
\ No newline at end of file
090518 cs xtt Advanced user set as default, not set with option -d.
090519 cs ge Bugfix in fonts for language se_sv.
......@@ -3384,6 +3384,9 @@ static char *font_string( int font_idx, int font_type, double size)
default:
sprintf( str, "%s %s%f", "Lucida Sans", bold_str, FONT_SCALE * size);
}
for ( char *s = str; *s; s++)
if ( *s == ',')
*s = '.';
return str;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment