How to write text in a certain cordinate in QGraphicsScene? I was trying to do like this, but with no success. Text has blck borders but inside the letters it is white, and I can't make it be black.
QPainterPath path;
QFont font;
font.setPixelSize(50);
path.addText(100, 50, font, tr("Hello World!!!"));
path.setFillRule();
m_graphScen->addPath(path);