Decrease the italic fonts boundingbox adjustment

This commit is contained in:
Martin Tůma 2018-11-10 15:49:33 +01:00
parent 1aef1fcefe
commit 8e9df6cc0e

View File

@ -13,13 +13,13 @@ TextItem::TextItem(const QString &text, const QPointF &pos, const QFont &font,
// Italic fonts overflow the computed bounding rect, so reduce it
// a little bit.
if (font.italic())
limit -= font.pixelSize();
limit -= font.pixelSize() / 2.0;
QRect br = fm.boundingRect(QRect(0, 0, limit, 0), FLAGS, text);
Q_ASSERT(br.isValid());
// Expand the bounding rect back to the real content size
if (font.italic())
br.adjust(-font.pixelSize() / 2, 0, font.pixelSize() / 2, 0);
br.adjust(-font.pixelSize() / 4.0, 0, font.pixelSize() / 4.0, 0);
setPos((pos - QPointF(br.width() / 2.0, br.height() / 2.0)).toPoint());
_boundingRect = QRectF(0, 0, br.width(), br.height());
}