# HG changeset patch # User Sean Egan # Date 1182533176 0 # Node ID 5cfa2e63d2fd0100d1b02be31eb6e751f75b11a5 # Parent 4b5fed5cb038f975a20c043a017194df68b1f7dd# Parent a573a67c80a4f333861f9585c37cc355b7ad7c8a merge of '5c5738f443887f7024ff8eab573392f8795b9413' and 'd2f50519c5ed668dd980277afdc25d71ccb8a852' diff -r 4b5fed5cb038 -r 5cfa2e63d2fd pidgin/gtkprefs.c --- a/pidgin/gtkprefs.c Thu Jun 21 19:25:55 2007 +0000 +++ b/pidgin/gtkprefs.c Fri Jun 22 17:26:16 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; }