Details
-
Suggestion
-
Resolution: Invalid
-
P1: Critical
-
4.7.0
-
symbian
Description
When QGraphicsView has been rotated with 90,180 or 270 text drawing seems to fall back to use Qt Path Stroking Algorithm . In these special cases also could we avoid using stroking algorithm but rather rotate the glyph positions??
void QVGPaintEngine::drawTextItem(const QPointF &p, const QTextItem &textItem) { --- code // If we are not using a simple transform, then fall back // to the default Qt path stroking algorithm. if (!d->simpleTransform) { ---> check seems to happen here QPaintEngineEx::drawTextItem(p, textItem); return; } ---code }