Bug 133483

Summary: amarok can't edit radio streams entries
Product: [Applications] amarok Reporter: p92
Component: generalAssignee: Amarok Developers <amarok-bugs-dist>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: 1.4.2   
Target Milestone: ---   
Platform: unspecified   
OS: Linux   
Latest Commit: Version Fixed In:

Description p92 2006-09-03 10:44:22 UTC
Version:           1.4.2 (using KDE 3.5.4, Kubuntu Package 4:3.5.4-0ubuntu2~dapper1 )
Compiler:          Target: i486-linux-gnu
OS:                Linux (i686) release 2.6.15-26-686

Since amarok 1.4.2 radio streams entries cannot be modified.

The popup containing name + url entries is not editable.
Comment 1 Seb Ruiz 2006-09-03 11:26:31 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();