From 339fd128f951f69df281f3f0339f115d7ff450af Mon Sep 17 00:00:00 2001 From: Conor Curran Date: Wed, 23 Mar 2011 15:49:11 +0000 Subject: make sure on playlist update it doesn't use the custom icon --- src/playlists-menu-item.vala | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'src') diff --git a/src/playlists-menu-item.vala b/src/playlists-menu-item.vala index 704f61c..58c3875 100644 --- a/src/playlists-menu-item.vala +++ b/src/playlists-menu-item.vala @@ -83,23 +83,11 @@ public class PlaylistsMenuitem : PlayerItem } } - private string? parse_icon_path (string path) - { - if (path == "")return null; - var icon_file = File.new_for_path (path); - if (icon_file.get_path() == null)return null; - return icon_file.get_basename().split(".")[0]; - } - public void update_individual_playlist (PlaylistDetails new_detail) { foreach ( Dbusmenu.Menuitem item in this.current_playlists.values ){ if (new_detail.path == item.property_get (MENUITEM_PATH)){ item.property_set (MENUITEM_PROP_LABEL, new_detail.name); - var result = this.parse_icon_path (new_detail.icon_path); - if (result != null) { - item.property_set (MENUITEM_PROP_ICON_NAME, result); - } } } // If its active make sure the name is updated on the root item. -- cgit v1.2.3