1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-23 01:09:42 +01:00

Fix ambiguous if() statement

This commit is contained in:
Leo Franchi 2012-08-01 14:35:28 -04:00
parent a9339caa8b
commit eabefe438d

View File

@ -165,7 +165,7 @@ AnimatedSpinner::drawFrame( QPainter* p, const QRect& rect )
void
AnimatedSpinner::fadeIn()
{
if ( parentWidget() && isVisible() || m_animation->state() == QTimeLine::Running )
if ( ( parentWidget() && isVisible() ) || m_animation->state() == QTimeLine::Running )
return;
m_animation->start();