Skip to content

Commit

Permalink
Fix compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
argilo committed Oct 10, 2023
1 parent e92108c commit 898d120
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qtgui/meter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ void CMeter::draw(QPainter &painter)
painter.setFont(font);

painter.setPen(QColor(0xDA, 0xDA, 0xDA, 0xFF));
painter.drawText(marg, height() - 2, QString::number(m_dBFS, 'f', 1) + " dBFS" );
painter.drawText(marg, height() - 2, QString::number((double)m_dBFS, 'f', 1) + " dBFS" );
}

// Called to draw an overlay bitmap containing items that
Expand Down

0 comments on commit 898d120

Please sign in to comment.