GNOME Bugzilla – Bug 393111
Add a "Clear Playlist" Edit menu item
Last modified: 2007-01-14 23:47:47 UTC
From bug #164220
Created attachment 79877 [details] [review] patch
Good first try, but you should use totem_playlist_get_current() so that the "Clear playlist" button is only sensitive when there are items to clear in the playlist.
Created attachment 79973 [details] [review] clear_playlist second try, also had to make totem_playlist_update_save_button () non static to make Save playlist button work correctly.
Comment on attachment 79973 [details] [review] clear_playlist >Index: src/totem-playlist.c >=================================================================== >--- src/totem-playlist.c (revision 3855) >+++ src/totem-playlist.c (working copy) >@@ -280,7 +280,7 @@ totem_playlist_is_media (const char *mrl > return FALSE; > } > >-static void >+void > totem_playlist_update_save_button (TotemPlaylist *playlist) No, totem_playlist_update_save_button should be called after the playlist is cleared in totem_playlist_clear ()
Created attachment 80235 [details] [review] clear_playlist moved update_save_button ()
2007-01-14 Bastien Nocera <hadess@hadess.net> * data/totem-ui.xml: * src/totem-menu.c: (clear_playlist_action_callback): * src/totem-playlist.c: (totem_playlist_clear): * src/totem.c: (totem_action_set_mrl_with_warning): Patch from Rene Vahtel <vahtel@starman.ee> to add a "Clear Playlist" menu item (Closes: #393111)