+++ /dev/null
-Description: don't use humanity icons as default
-Author: unknown
-Bug: https://bitbucket.org/troorl/pino3/issue/1
-Forwarded: not-needed
-
---- a/src/tree_widget.vala
-+++ b/src/tree_widget.vala
-@@ -15,13 +15,24 @@
- private Gdk.Pixbuf pix_updating;
-
- public Frame frame;
-+
-+ public Gdk.Pixbuf get_pixbuf_from_stock (string stock_id, Gtk.IconSize size) {
-+
-+ Gdk.Pixbuf pixbuf;
-+ Gtk.Invisible w;
-+
-+ w = new Gtk.Invisible ();
-+ pixbuf = w.render_icon (stock_id, size, "vala");
-+
-+ return pixbuf;
-+ }
-
- public TreeWidget(Window parent, Accounts accounts) {
- this.parent = parent;
- this.accounts = accounts;
-
- try {
-- pix_account = new Gdk.Pixbuf.from_file("/usr/share/icons/Humanity/places/24/folder-videos.svg");
-+ pix_account = get_pixbuf_from_stock("folder-videos", Gtk.IconSize.SMALL_TOOLBAR);
- pix_updating = new Gdk.Pixbuf.from_file(Config.UPDATING_PATH);
- } catch(GLib.Error e) {
- debug(e.message);