| Summary: | shadows of cover-pop-up in taskbar | ||
|---|---|---|---|
| Product: | [Applications] amarok | Reporter: | Maik Wachsmuth <cybergh0stxxl> |
| Component: | general | Assignee: | Amarok Bugs <amarok-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | wishlist | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.4.4 | ||
| Target Milestone: | --- | ||
| Platform: | Slackware | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Maik Wachsmuth
2006-10-31 21:11:44 UTC
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 =) |