Bug 133483 - amarok can't edit radio streams entries
Summary: amarok can't edit radio streams entries
Status: RESOLVED FIXED
Alias: None
Product: amarok
Classification: Applications
Component: general (show other bugs)
Version: 1.4.2
Platform: unspecified Linux
: NOR normal
Target Milestone: ---
Assignee: Amarok Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-09-03 10:44 UTC by p92
Modified: 2006-09-03 11:26 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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();