1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-19 07:22:32 +02:00

* Fix album / artist order in Infobar caption.

This commit is contained in:
Christian Muehlhaeuser 2011-02-16 14:58:32 +01:00
parent 9059dd4782
commit 9fe0ec352f

View File

@ -291,7 +291,7 @@ PlaylistManager::show( const Tomahawk::album_ptr& album )
m_currentInterface = view->proxyModel();
}
m_infobar->setCaption( tr( "All tracks on %1 by %2" ).arg( album->artist()->name() ).arg( album->name() ) );
m_infobar->setCaption( tr( "All tracks on %1 by %2" ).arg( album->name() ).arg( album->artist()->name() ) );
m_infobar->setDescription( "" );
m_superCollectionVisible = false;