mainwindow: force icons to have sane size

BugLink: https://bugs.freedesktop.org/show_bug.cgi?id=86398
This commit is contained in:
Felipe Sateler 2016-05-01 20:27:12 +03:00 committed by Tanu Kaskinen
parent f6015d6426
commit 6e0de0a39a
1 changed files with 1 additions and 1 deletions

View File

@ -290,7 +290,7 @@ static void set_icon_name_fallback(Gtk::Image *i, const char *name, Gtk::IconSiz
theme = Gtk::IconTheme::get_default();
try {
pixbuf = theme->load_icon(name, width, Gtk::ICON_LOOKUP_GENERIC_FALLBACK);
pixbuf = theme->load_icon(name, width, Gtk::ICON_LOOKUP_GENERIC_FALLBACK | Gtk::ICON_LOOKUP_FORCE_SIZE);
if (pixbuf)
i->set(pixbuf);