1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-21 08:19:42 +01:00

* Fixed wording on album page.

This commit is contained in:
Christian Muehlhaeuser 2011-08-14 04:28:03 +02:00
parent 37367bc5da
commit add8515111

View File

@ -80,6 +80,8 @@ AlbumInfoWidget::load( const album_ptr& album )
m_album = album;
m_title = album->name();
m_description = album->artist()->name();
ui->albumsLabel->setText( tr( "Other Albums by %1" ).arg( album->artist()->name() ) );
m_tracksModel->addTracks( album, QModelIndex() );
DatabaseCommand_AllAlbums* cmd = new DatabaseCommand_AllAlbums();