QGraphicsTextItem renders better

The QPainterPath did not fill the text font, only drew the edge.
This commit is contained in:
Guilherme Brondani Torri 2014-12-01 16:55:08 +01:00
parent 4fe42dc615
commit 1f14d28016

View File

@ -402,10 +402,14 @@ void createIcons() {
}
foreach(Text *t, Texts) {
QPainterPath *path = new QPainterPath();
QFont myFont;
path->addText(t->x,t->y+15,myFont,t->s);
scene->addPath(*path);
myFont.setPointSize(10);
QGraphicsTextItem* item = new QGraphicsTextItem(t->s);
item->setX(t->x);
item->setY(t->y);
item->setFont(myFont);
scene->addItem(item);
}
// this uses the size of the component as icon size