Dec. 15, 2009
6:27 p.m.
On 15.12.2009 18:40, "M. Polák" wrote: > Hi there, > in older version of Pharo (pharo1.0-10487-BETAdev09.10.4) I was able > to type Czech acc. chars (like ÄÅ¡ÄÅžýáÃé) without problems. > But in most recent image, there is problem - instead of these > characters, I see only '?'. What has changed? In the older version, > there is 'Fonts' folder (none in recent version), so I suppose, that > font handling is now different. Importing DejaVu Czech font into > recent image doesn't help. Any suggestiions what I should do? > > Thanks, > Martin > _______________________________________________ > Pharo-project mailing list > Pharo-project@lists.gforge.inria.fr > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project The standard font in Pharo covers the latin-15 character set. Which means it should be able to display áÃé, with a Unicode conversion table. However, all input outside ascii range is in Unicode, so to display those you need to - Import a Font which includes them. (Like the DejaVu FT-font included previously) - Change the fonts used to the one you know support Czech characters from the world rightclick menu, in System -> Preferences -> System fonts. Cheers, Henry