After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 304678 - Allow SVG in Gnome iconthemes per def
Allow SVG in Gnome iconthemes per def
Status: RESOLVED WONTFIX
Product: libgnomeui
Classification: Deprecated
Component: general
unspecified
Other All
: Normal enhancement
: future
Assigned To: libgnomeui maintainers
libgnomeui maintainers
Depends on:
Blocks:
 
 
Reported: 2005-05-18 18:19 UTC by David Christian Berg
Modified: 2005-12-27 11:31 UTC
See Also:
GNOME target: ---
GNOME version: Unversioned Enhancement



Description David Christian Berg 2005-05-18 18:20:00 UTC
 
Comment 1 David Christian Berg 2005-05-18 18:25:25 UTC
Hmm, sorry, accidentally pressed enter...

What I'd want to set allow_svg to TRUE in the following function in
gnome-icon-theme.c:

static void
gnome_icon_theme_init (GnomeIconTheme *icon_theme)
{
  GnomeIconThemePrivate *priv;

  priv = g_new0 (GnomeIconThemePrivate, 1);

  icon_theme->priv = priv;

  priv->gtk_theme = NULL;
  priv->allow_svg = FALSE;
}

This way gnome-apps accept SVG-icons per default and you don't have to call them
PNG to be able to use SVGs as icons.
Comment 2 Christian Neumair 2005-12-09 20:27:50 UTC
Thanks for your bug report!

What's the issue with calling gnome_icon_theme_set_allow_svg? In my opinion, we
should really respect the traditional GnomeIconTheme semantics, since it is
deprecated.
Comment 3 David Christian Berg 2005-12-26 23:26:19 UTC
Hmm, for example Evolution only excepts "PNGs" as icons. I need to name my svgs to png extention. Kinda stupid.
Comment 4 Christian Neumair 2005-12-27 11:31:32 UTC
I've filed bug 325050 against Evolution, feel free to file bug reports against any other software which still uses GnomeIconFactory without calling gnome_icon_theme_set_allow_svg. Note that GnomeIconFactory can never be as smart as GtkIconFactory, which peeks whether its pixbuf loaders support SVG.