# HG changeset patch # User Stu Tomlinson # Date 1182449328 0 # Node ID a573a67c80a4f333861f9585c37cc355b7ad7c8a # Parent 4eb0a18484ccdaf2da3735cab68af81c3222f3df Only hide the proxy options table if not running gnome otherwise we hide the IP address table instead! diff -r 4eb0a18484cc -r a573a67c80a4 pidgin/gtkprefs.c --- a/pidgin/gtkprefs.c Thu Jun 21 11:37:19 2007 +0000 +++ b/pidgin/gtkprefs.c Thu Jun 21 18:08:48 2007 +0000 @@ -1214,9 +1214,10 @@ } gtk_widget_show_all(ret); - if (proxy_info == NULL || + /* Only hide table if not running gnome otherwise we hide the IP address table! */ + if (!purple_running_gnome() && (proxy_info == NULL || purple_proxy_info_get_type(proxy_info) == PURPLE_PROXY_NONE || - purple_proxy_info_get_type(proxy_info) == PURPLE_PROXY_USE_ENVVAR) + purple_proxy_info_get_type(proxy_info) == PURPLE_PROXY_USE_ENVVAR)) gtk_widget_hide(table); return ret; }