diff options
author | Matthias Clasen <mclasen@redhat.com> | 2019-02-12 13:31:58 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2019-02-12 17:34:43 -0500 |
commit | 4df2a4c82c5a674522aeb83b5380032500f9b173 (patch) | |
tree | 388f5ec449e7afb89bb2bb24d65561dfc78b25a3 /gtk/gtkicontheme.c | |
parent | 92d6f5e8fd71fa4890790b34408310fd79ef23a7 (diff) | |
download | gtk+-4df2a4c82c5a674522aeb83b5380032500f9b173.tar.gz |
icon theme: Remove fallbacks
We want to include all needed icons as resources,
so disable the fallbacks and see what comes up.
Diffstat (limited to 'gtk/gtkicontheme.c')
-rw-r--r-- | gtk/gtkicontheme.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/gtkicontheme.c b/gtk/gtkicontheme.c index f1b8545cda..d41d31310e 100644 --- a/gtk/gtkicontheme.c +++ b/gtk/gtkicontheme.c @@ -1300,8 +1300,10 @@ load_themes (GtkIconTheme *icon_theme) * and gnome is a pragmatic solution to prevent missing icons in * GTK+ applications when run under, e.g. KDE. */ +#if 0 insert_theme (icon_theme, DEFAULT_ICON_THEME); insert_theme (icon_theme, "gnome"); +#endif insert_theme (icon_theme, FALLBACK_ICON_THEME); priv->themes = g_list_reverse (priv->themes); |