Minor change don't use drawUIString() in FileList::onPaint()

This commit is contained in:
David Capello 2016-03-15 12:56:44 -03:00
parent 8de92df6cc
commit cb4b4f8b4d

View File

@ -359,7 +359,7 @@ void FileList::onPaint(ui::PaintEvent& ev)
if (fi->isFolder()) {
int icon_w = font()->textLength("[+]");
g->drawUIString("[+]", fgcolor, bgcolor, gfx::Point(x, y+2*guiscale()));
g->drawString("[+]", fgcolor, bgcolor, gfx::Point(x, y+2*guiscale()));
x += icon_w+2*guiscale();
}