1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-25 09:18:54 -05:00

Don't use deprecated function

This commit is contained in:
Jon Beniston 2022-09-25 11:06:49 +01:00
parent ac1f61c3ed
commit e65baa13d3

View File

@ -4407,16 +4407,16 @@ void GLSpectrum::drawTextsRight(const QStringList &text, const QStringList &valu
int textWidth, maxWidth;
for (int i = text.length() - 1; i >= 0; i--)
{
textWidth = fm.width(units[i]);
textWidth = fm.horizontalAdvance(units[i]);
painter.drawText(QPointF(x - textWidth, y), units[i]);
x -= textWidth;
textWidth = fm.width(value[i]);
maxWidth = fm.width(max[i]);
textWidth = fm.horizontalAdvance(value[i]);
maxWidth = fm.horizontalAdvance(max[i]);
painter.drawText(QPointF(x - textWidth, y), value[i]);
x -= maxWidth;
textWidth = fm.width(text[i]);
textWidth = fm.horizontalAdvance(text[i]);
painter.drawText(QPointF(x - textWidth, y), text[i]);
x -= textWidth;
}