diff --git a/playlist/popover.py b/playlist/popover.py index 8a6561d..f6e4bf9 100644 --- a/playlist/popover.py +++ b/playlist/popover.py @@ -3,7 +3,7 @@ from gi.repository import Gtk, Gio, GObject import tagdb Exclude = [ "Collection", "New Tracks", "Previous" ] -Icons = { "Favorites" : "emblem-favorites", +Icons = { "Favorites" : "emmental-favorites", "Up Next" : "edit-redo" } diff --git a/playlist/test_popover.py b/playlist/test_popover.py index 97dab33..293e90d 100644 --- a/playlist/test_popover.py +++ b/playlist/test_popover.py @@ -30,7 +30,7 @@ class TestAddPopover(unittest.TestCase): self.assertEqual(popover.Exclude, [ "Collection", "New Tracks", "Previous" ]) - self.assertEqual(popover.Icons, { "Favorites" : "emblem-favorites", + self.assertEqual(popover.Icons, { "Favorites" : "emmental-favorites", "Up Next" : "edit-redo" }) self.assertIsInstance(row.box, Gtk.Box) @@ -38,7 +38,7 @@ class TestAddPopover(unittest.TestCase): self.assertIsInstance(row.label, Gtk.Label) self.assertEqual(row.tag, tag) - self.assertEqual(row.icon.get_icon_name(), "emblem-favorites") + self.assertEqual(row.icon.get_icon_name(), "emmental-favorites") self.assertEqual(row.label.get_text(), "Favorites") self.assertEqual(row.box.get_spacing(), 5) self.assertEqual(row.get_child(), row.box)