aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--shell/ChangeLog3
-rw-r--r--shell/main.c4
2 files changed, 7 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index d41fbabfe1..fe905fd789 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -5,6 +5,9 @@
running (blocked in g_poll()). Sigh, the linc2 code is a
mystery. Why this is necessary I have no idea.
+ * main.c (main): On Win32, set the gtk-fallback-icon-theme to
+ "gnome".
+
2006-02-07 Andre Klapper <a9016009@gmx.de>
* e-shell-window-commands.c: changing year from 2005 to 2006.
diff --git a/shell/main.c b/shell/main.c
index ee4d8cc728..fae54d01fe 100644
--- a/shell/main.c
+++ b/shell/main.c
@@ -529,6 +529,10 @@ main (int argc, char **argv)
exit (0);
}
+#ifdef G_OS_WIN32
+ gtk_rc_parse_string ("gtk-fallback-icon-theme = \"gnome\"");
+#endif
+
#if DEVELOPMENT
if (force_migrate) {
destroy_config ();