1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-13 12:31:52 +02:00

Use new spotify png instead of jpg

This commit is contained in:
Leo Franchi 2011-09-20 21:47:06 -04:00
parent 2b8825f814
commit 656221dcc0
3 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.0 KiB

View File

@ -115,7 +115,7 @@
<file>data/images/drop-top-songs.png</file>
<file>data/images/drop-song.png</file>
<file>data/images/drop-album.png</file>
<file>data/images/spotify-logo.jpg</file>
<file>data/images/spotify-logo.png</file>
<file>data/images/uploading.png</file>
<file>data/images/downloading.png</file>
<file>data/images/headphones.png</file>

View File

@ -329,7 +329,7 @@ QPixmap
SpotifyParser::pixmap()
{
if ( !s_pixmap )
s_pixmap = new QPixmap( RESPATH "images/spotify-logo.jpg" );
s_pixmap = new QPixmap( RESPATH "images/spotify-logo.png" );
return *s_pixmap;
}