From d6778a55cf94ba73635cb1410cdbcd19fd3f93e9 Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Wed, 2 Nov 2011 22:48:48 -0400 Subject: [PATCH] Only animate when visible --- src/libtomahawk/widgets/Breadcrumb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtomahawk/widgets/Breadcrumb.cpp b/src/libtomahawk/widgets/Breadcrumb.cpp index aec9a7f49..8409283ff 100644 --- a/src/libtomahawk/widgets/Breadcrumb.cpp +++ b/src/libtomahawk/widgets/Breadcrumb.cpp @@ -123,7 +123,7 @@ Breadcrumb::updateButtons( const QModelIndex& updateFrom ) btn->show(); // Animate all buttons except the first - if ( m_buttons.count() > 0 ) + if ( m_buttons.count() > 0 && isVisible() ) { QPropertyAnimation* animation = new QPropertyAnimation( btn, "pos" ); animation->setDuration( 300 );