Version: 1.4.4 (using KDE KDE 3.5.4) Installed from: Slackware Packages Hey there. I just created a music-queue and noticed that the albumcover in the popup, appearing when I focus the queueicon with the cursor, is shadowed. That looks great! Now my question: In my opinion the statuspopup I get when focusing the amaroKicon in the taskbar is kind of boring. What do you guys think of shadowing the albumcovers?! Please do something with it - It does not fit with the power of amaroK ;) That would be great ;) Regards, Maik =)
SVN commit 600789 by seb: Show shadowed cover images for the tooltip BUG: 136589 M +2 -2 tracktooltip.cpp --- trunk/extragear/multimedia/amarok/src/tracktooltip.cpp #600788:600789 @@ -224,10 +224,10 @@ m_tooltip += "<center><b>Amarok</b></center><table cellpadding='2' cellspacing='2' align='center'><tr>"; m_tooltip += "%1"; //the cover gets substituted in, in tooltip() - m_cover = CollectionDB::instance()->podcastImage( tags ); + m_cover = CollectionDB::instance()->podcastImage( tags, true ); if( m_cover.isEmpty() || m_cover.contains( "nocover" ) != -1 ) { - m_cover = CollectionDB::instance()->albumImage( tags ); + m_cover = CollectionDB::instance()->albumImage( tags, true ); if ( m_cover == CollectionDB::instance()->notAvailCover() ) m_cover = QString::null; }
thank you =)