mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
QGraphicsTextItem renders better
The QPainterPath did not fill the text font, only drew the edge.
This commit is contained in:
parent
4fe42dc615
commit
1f14d28016
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user