diff --git a/src/core/TrackContainer.cpp b/src/core/TrackContainer.cpp index 441de3f56a2..4356d8a5922 100644 --- a/src/core/TrackContainer.cpp +++ b/src/core/TrackContainer.cpp @@ -122,6 +122,9 @@ void TrackContainer::loadSettings( const QDomElement & _this ) if( node.isElement() && !node.toElement().attribute( "metadata" ).toInt() ) { + QString trackName = node.toElement().hasAttribute( "name" ) ? node.toElement().attribute( "name" ) : + node.firstChild().toElement().attribute( "name" ); + pd->setLabelText( tr("Loading Track %1 (%2/Total %3)").arg( trackName ).arg( pd->value() ).arg( Engine::getSong()->getLoadingTrackCount() ) ); Track::create( node.toElement(), this ); } node = node.nextSibling();