1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-21 05:11:44 +02:00

Added TomahawkUtils::Queue enum.

This commit is contained in:
Christian Muehlhaeuser
2014-10-12 08:57:57 +02:00
parent ab33f35f84
commit b470c95115
2 changed files with 4 additions and 0 deletions

View File

@@ -96,6 +96,7 @@ namespace TomahawkUtils
NewReleases, NewReleases,
NewAdditions, NewAdditions,
RecentlyPlayed, RecentlyPlayed,
Queue,
AutomaticPlaylist, AutomaticPlaylist,
Charts, Charts,
Station, Station,

View File

@@ -764,6 +764,9 @@ defaultPixmap( ImageType type, ImageMode mode, const QSize& size )
pixmap = ImageRegistry::instance()->pixmap( RESPATH "images/drop-all-songs.svg", size ); pixmap = ImageRegistry::instance()->pixmap( RESPATH "images/drop-all-songs.svg", size );
break; break;
case Queue:
pixmap = ImageRegistry::instance()->pixmap( RESPATH "images/queue.svg", size );
break;
case Inbox: case Inbox:
pixmap = ImageRegistry::instance()->pixmap( RESPATH "images/inbox.svg", size ); pixmap = ImageRegistry::instance()->pixmap( RESPATH "images/inbox.svg", size );
break; break;