| Summary: | Missing tracks/albums in the Artists tree view | ||
|---|---|---|---|
| Product: | [Applications] juk | Reporter: | Scott Zelakiewicz <zelakiew> |
| Component: | general | Assignee: | Michael Pyne <mpyne> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Scott Zelakiewicz
2005-03-31 18:25:36 UTC
I can confirm this same behavior. The tree-view of automatically generated playlists for artists albums and genres, apparently does a case insensitive match to see whether or not to append an artist album or genre, which seems desireable, but then the playlists themselves are generated using a case sensitive match, which causes some songs and or albums to never show up. I've just checked the code, and it is (supposed to be) doing a case insensitive search. However, I can also reproduce. Will try to pin down. SVN commit 449597 by mpyne: Fix bug 102952 (Missing tracks in Tree View for Artists). CCBUG:102952 M +1 -1 playlistsearch.cpp --- branches/KDE/3.5/kdemultimedia/juk/playlistsearch.cpp #449596:449597 @@ -221,7 +221,7 @@ case ContainsWord: { QString s = item->text(*it); - int i = s.find(m_query); + int i = s.find(m_query, 0, m_caseSensitive); if(i >= 0) { SVN commit 449598 by mpyne: Backport fix for bug 102952 (Missing tracks in Tree View for Artists) to KDE 3.4. BUG:102952 M +1 -1 playlistsearch.cpp --- branches/KDE/3.4/kdemultimedia/juk/playlistsearch.cpp #449597:449598 @@ -221,7 +221,7 @@ case ContainsWord: { QString s = item->text(*it); - int i = s.find(m_query); + int i = s.find(m_query, 0, m_caseSensitive); if(i >= 0) { |