With revisions 689 and 690 I’m having trouble getting italics to render. I have some code like this in a paintListBoxItem method:
int style = Font::plain;
if (isRowSelected && mPresetChanged)
style = Font::italic;
g.setFont (14.0f, style);
g.drawSingleLineText(preset.getName(), 5, height-6);
When style is set to Font::italic, it still renders using the normal glyphs. I tried setting style to Font::bold and that works as expected.
