mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 03:35:53 +01:00
A better QPainter text rect inconsistency workaround
This commit is contained in:
parent
734ba4bf44
commit
2fdbc25ca3
@ -27,7 +27,7 @@ TextPointItem::TextPointItem(const QPoint &point, const QString *text,
|
||||
QFontMetrics fm(*_font);
|
||||
int limit = _font->pixelSize() * MAX_TEXT_WIDTH;
|
||||
_textRect = fm.boundingRect(QRect(0, 0, limit, 0), FLAGS, *_text);
|
||||
_textRect.adjust(0, 0, 1, 1);
|
||||
_textRect.adjust(-1, 0, 2, 0);
|
||||
|
||||
if (_bgColor && _textRect.width() < _font->pixelSize() * MIN_BOX_WIDTH)
|
||||
expand(_textRect, _font->pixelSize() * MIN_BOX_WIDTH);
|
||||
|
Loading…
Reference in New Issue
Block a user