| Summary: | dynamic playlist history conflicts with dynamic collection | ||
|---|---|---|---|
| Product: | [Applications] amarok | Reporter: | bonne |
| Component: | Playlist | Assignee: | Amarok Bugs <amarok-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.4-SVN | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
bonne
2006-11-23 00:06:20 UTC
infact, we do have two separate flags, isEnabled() and isDynamicEnabled(). more than likely this has been overlooked somewhere :) It seems to work okay. Reopen if yu still can reproduce this in current svn versions. This problem still definitely exists. To reproduce: 1. Have some files in the collection from a removable device. 2. Create a dynamic playlist that includes some of these files. 3. Exit Amarok 4. Unplug the device 5. Start Amarok - As expected there are history items in grey and non-history items from the removable device also in grey 6. Plug the removable device back in - At this point we expect the non-history items to come back to life in the playlist. 7. Watch as they remain in grey. I shall take a look and see if I can find where its coming from. confirmed. mounting a removable device does not reenable items that have been disabled and are located on this device. svn revision around 623546 :) SVN commit 626564 by mitchell:
Possible fix for dynamic playlist not playing well with dynamic collections
Can someone on this bug report test this out? This code should stay regardless, as it should be a bugfix of some sort, but it'd be nice to know if this
closes the bug.
CCBUG: 137748
M +3 -0 playlist.cpp
M +1 -0 playlistitem.cpp
--- trunk/extragear/multimedia/amarok/src/playlist.cpp #626563:626564
@@ -434,7 +434,10 @@
{
bool exist = p->exists();
if( exist != p->checkExists() )
+ {
+ p->setFilestatusEnabled( exist );
p->update();
+ }
}
}
}
--- trunk/extragear/multimedia/amarok/src/playlistitem.cpp #626563:626564
@@ -227,6 +227,7 @@
{
m_filestatusEnabled = enabled;
m_dynamicEnabled = enabled;
+ checkExists();
setEnabled();
}
the problem still here with revision 626647. SVN commit 627467 by mkossick:
BUG: 137748
Jeff, you almost fixed it:)
M +1 -1 playlist.cpp
--- trunk/extragear/multimedia/amarok/src/playlist.cpp #627466:627467
@@ -435,7 +435,7 @@
bool exist = p->exists();
if( exist != p->checkExists() )
{
- p->setFilestatusEnabled( exist );
+ p->setFilestatusEnabled( p->checkExists() );
p->update();
}
}
|