From b6e724e76fb3fb14b30aa1a2fee94dba5e858ef9 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sat, 26 Apr 2014 10:14:38 -0400 Subject: [PATCH] Add Adwaita to the list of default icon themes Hardcode the fallback to Adwaita. I'm leaving gnome in here for now, since we're in the middle of the transition. It will be removed before 3.14. --- gtk/gtkicontheme.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gtk/gtkicontheme.c b/gtk/gtkicontheme.c index a5aa468509..2d40287d7e 100644 --- a/gtk/gtkicontheme.c +++ b/gtk/gtkicontheme.c @@ -1256,6 +1256,7 @@ load_themes (GtkIconTheme *icon_theme) * in gnome is a pragmatic solution to prevent missing * icons in GTK+ applications when run under, e.g. KDE. */ + insert_theme (icon_theme, "Adwaita"); insert_theme (icon_theme, "gnome"); insert_theme (icon_theme, DEFAULT_THEME_NAME); priv->themes = g_list_reverse (priv->themes);