diff options
author | Benjamin Berg <benjamin@sipsolutions.net> | 2006-02-07 21:20:10 +0800 |
---|---|---|
committer | Andre Klapper <aklapper@src.gnome.org> | 2006-02-07 21:20:10 +0800 |
commit | a853e3d5a2f48a2312023183de97f3a47bbbb678 (patch) | |
tree | 14cce9815cb89d423f2de4be5c6308fa7be217e7 /e-util/e-gui-utils.c | |
parent | 8902c6e7344221cc7830a56fc1c43a4686f4f700 (diff) | |
download | gsoc2013-evolution-a853e3d5a2f48a2312023183de97f3a47bbbb678.tar.gz gsoc2013-evolution-a853e3d5a2f48a2312023183de97f3a47bbbb678.tar.zst gsoc2013-evolution-a853e3d5a2f48a2312023183de97f3a47bbbb678.zip |
accept SVGs for stock icons. Fixes bug 304417.
2006-02-07 Benjamin Berg <benjamin@sipsolutions.net>
* e-gui-utils.c:
* e-icon-factory.c:
accept SVGs for stock icons. Fixes bug 304417.
svn path=/trunk/; revision=31433
Diffstat (limited to 'e-util/e-gui-utils.c')
-rw-r--r-- | e-util/e-gui-utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/e-util/e-gui-utils.c b/e-util/e-gui-utils.c index 919ad860bb..3c1f6f67af 100644 --- a/e-util/e-gui-utils.c +++ b/e-util/e-gui-utils.c @@ -107,6 +107,7 @@ e_icon_for_mime_type (const char *mime_type, int size_hint) if (!icon_theme) icon_theme = gnome_icon_theme_new (); + gnome_icon_theme_set_allow_svg (icon_theme, TRUE); icon_name = gnome_icon_lookup (icon_theme, NULL, NULL, NULL, NULL, mime_type, 0, NULL); |