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:
parent
a9339caa8b
commit
eabefe438d
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user