pidgin/gtkprefs.c

changeset 18285
1b2a6ef12066
parent 18228
69da1c9d8226
child 18348
5d5887ed1e19
--- 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;
 }

mercurial