1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-07 14:46:33 +02:00

Don't use ScriptCommand queue for Artist, Album and Track scriptcommands

This commit is contained in:
Dominik Schmidt
2015-01-09 19:36:43 +01:00
parent ea42bd1d18
commit df9a835c81
3 changed files with 3 additions and 3 deletions

View File

@@ -48,7 +48,7 @@ ScriptCommand_AllAlbums::enqueue()
return;
}
collection->resolver()->enqueue( QSharedPointer< ScriptCommand >( this ) );
exec();
}

View File

@@ -44,7 +44,7 @@ ScriptCommand_AllArtists::enqueue()
return;
}
collection->resolver()->enqueue( QSharedPointer< ScriptCommand >( this ) );
exec();
}

View File

@@ -46,7 +46,7 @@ ScriptCommand_AllTracks::enqueue()
return;
}
collection->resolver()->enqueue( QSharedPointer< ScriptCommand >( this ) );
exec();
}