1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-14 04:51:53 +02:00

* Fixed jumping to current track when clicking track title in AudioControls.

This commit is contained in:
Christian Muehlhaeuser 2011-02-27 03:26:52 +01:00
parent 6422353d54
commit 5ac6a0309c
2 changed files with 2 additions and 1 deletions

View File

@ -248,7 +248,7 @@ AlbumModel::addFilteredCollection( const collection_ptr& collection, unsigned in
Database::instance()->enqueue( QSharedPointer<DatabaseCommand>( cmd ) );
m_title = tr( "All albums by %1" ).arg( collection->source()->friendlyName() );
m_title = tr( "All albums from %1" ).arg( collection->source()->friendlyName() );
}

View File

@ -786,6 +786,7 @@ PlaylistManager::showCurrentTrack()
{
ViewPage* page = pageForInterface( AudioEngine::instance()->currentTrackPlaylist() );
setPage( page );
page->jumpToCurrentTrack();
}