diff options
author | Tor Lillqvist <tml@novell.com> | 2006-02-21 07:33:55 +0800 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2006-02-21 07:33:55 +0800 |
commit | fbc1cb8629dbde1b7be2ecbf55416a0a85756cc1 (patch) | |
tree | edf34477275ad34fb1c9820417d4da3dc965aec2 /shell | |
parent | cfe7f798ad0404c6a061ae9b01d50fa8dcffd4c3 (diff) | |
download | gsoc2013-evolution-fbc1cb8629dbde1b7be2ecbf55416a0a85756cc1.tar.gz gsoc2013-evolution-fbc1cb8629dbde1b7be2ecbf55416a0a85756cc1.tar.zst gsoc2013-evolution-fbc1cb8629dbde1b7be2ecbf55416a0a85756cc1.zip |
On Win32, set the gtk-fallback-icon-theme to "gnome".
2006-02-21 Tor Lillqvist <tml@novell.com>
* main.c (main): On Win32, set the gtk-fallback-icon-theme to
"gnome".
svn path=/trunk/; revision=31553
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 3 | ||||
-rw-r--r-- | shell/main.c | 4 |
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 (); |