1
0
mirror of https://github.com/clementine-player/Clementine synced 2024-12-17 12:02:48 +01:00

Fix compiling on ARM.

This commit is contained in:
Nobuhiro Iwamatsu 2011-08-01 22:37:53 +02:00 committed by John Maguire
parent 8091f9d1cd
commit 3ded9f29d2

View File

@ -352,7 +352,7 @@ void NowPlayingWidget::DrawContents(QPainter *p) {
void NowPlayingWidget::FadePreviousTrack(qreal value) {
previous_track_opacity_ = value;
if (qFuzzyCompare(previous_track_opacity_, 0.0)) {
if (qFuzzyCompare(previous_track_opacity_, qreal(0.0))) {
previous_track_ = QPixmap();
}