| Summary: | amarok can't edit radio streams entries | ||
|---|---|---|---|
| Product: | [Applications] amarok | Reporter: | p92 |
| Component: | general | Assignee: | Amarok Bugs <amarok-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.4.2 | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
p92
2006-09-03 10:44:22 UTC
SVN commit 580320 by seb:
Default streams should not be editable, whilst user added streams should be!
BUG: 133483
M +1 -1 playlistbrowser.cpp
--- trunk/extragear/multimedia/amarok/src/playlistbrowser.cpp #580319:580320
@@ -2694,7 +2694,7 @@
addSelectedToPlaylist();
break;
case EDIT:
- editStreamURL( item, item->isKept() ); //only editable if we keep it
+ editStreamURL( item, !item->isKept() ); //only editable if we keep it
break;
case REMOVE:
removeSelectedItems();
|