Fix a missing icon in the playlist context menu

This commit is contained in:
David Sansome 2012-05-12 19:12:33 +01:00
parent ed11075930
commit 0de061722b
1 changed files with 1 additions and 1 deletions

View File

@ -1330,7 +1330,7 @@ void MainWindow::PlaylistRightClick(const QPoint& global_pos, const QModelIndex&
//create the playlist submenu
QMenu* add_to_another_menu = new QMenu(tr("Add to another playlist"), this);
add_to_another_menu->setIcon((IconLoader::Load("add")));
add_to_another_menu->setIcon(IconLoader::Load("list-add"));
PlaylistBackend::Playlist playlist;
foreach (playlist, app_->playlist_backend()->GetAllPlaylists()) {