diff options
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/ChangeLog | 7 | ||||
-rw-r--r-- | e-util/e-icon-factory.c | 4 |
2 files changed, 10 insertions, 1 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index b1d1bdce34..02e1bb5968 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,10 @@ +2007-10-12 Michael Monreal <michael.monreal@gmail.com> + + ** Migration of theme icons to data/icons/ (bug #479257) + + * file e-util/e-icon-factory.c: + Append a private icon directory to the search path. + 2007-10-11 Milan Crha <mcrha@redhat.com> ** Fix for bug #311179 diff --git a/e-util/e-icon-factory.c b/e-util/e-icon-factory.c index 0b313fbfa7..52a7f14e82 100644 --- a/e-util/e-icon-factory.c +++ b/e-util/e-icon-factory.c @@ -213,7 +213,9 @@ e_icon_factory_init (void) icon_theme = gtk_icon_theme_get_default (); gtk_icon_theme_append_search_path (icon_theme, - EVOLUTION_DATADIR G_DIR_SEPARATOR_S "icons"); + EVOLUTION_DATADIR G_DIR_SEPARATOR_S + "evolution" G_DIR_SEPARATOR_S + BASE_VERSION G_DIR_SEPARATOR_S "icons"); g_signal_connect ( icon_theme, "changed", G_CALLBACK (icon_theme_changed_cb), NULL); |