2014-12-10 21:03 GMT+01:00 Nicolai Hess <[email protected]>: > Someone knows, why the text on the completion morph is so ugly? > For example, this text > > Morph ne > > will open a completion window for "Morph class". This name > is a vertical label on the left. > > The text looks ugly when we are using a FT font. > > Can we do anything to make this look better ? > > I know that (smooth) text rendering is difficult for arbitrary rotated > forms, but > this rotation around n*90 degree works with StrikeFont. > > > nicolai > >
Ah, finally -> 15358 <https://pharo.fogbugz.com/default.asp?15358> FreeTypeFont uses the wrong combination rule if subPixelAntiAliasing is disabled TransformationMorph disables subPixelAntiAliasing if the transformation scales and/or rotates. But FreeTypeFont only checks this value to select the glyph, and still uses the subPixelAntialiasing bitblt combination rule for rendering the string.
