[gnome-boxes] collection-view: Favorites emblem now a star



commit e8803fc16a6bf3f6fdc0a5d40e1664c5c4faba4a
Author: Adrien Plazas <kekun plazas laposte net>
Date:   Thu Jun 25 14:15:36 2015 +0200

    collection-view: Favorites emblem now a star
    
    Replace the "emblem-favorite" icon by the "starred" icon as the emblem
    for favorite boxes.
    
    This is needed to comply to GNOME's HIG.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=745757

 src/collection-view.vala |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/collection-view.vala b/src/collection-view.vala
index c9afde5..70cf171 100644
--- a/src/collection-view.vala
+++ b/src/collection-view.vala
@@ -81,7 +81,7 @@ private class Boxes.CollectionView: Gd.MainView, Boxes.UI {
         var pixbuf = machine.pixbuf;
 
         if ("favorite" in machine.config.categories)
-            pixbuf = add_emblem_icon (pixbuf, "emblem-favorite-symbolic", Gtk.CornerType.BOTTOM_LEFT);
+            pixbuf = add_emblem_icon (pixbuf, "starred-symbolic", Gtk.CornerType.BOTTOM_LEFT);
 
         store.set (iter, ModelColumns.SCREENSHOT, pixbuf);
         queue_draw ();


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]