comparison pidgin/gtkprefs.c @ 18226:5cfa2e63d2fd

merge of '5c5738f443887f7024ff8eab573392f8795b9413' and 'd2f50519c5ed668dd980277afdc25d71ccb8a852'
author Sean Egan <seanegan@gmail.com>
date Fri, 22 Jun 2007 17:26:16 +0000
parents a573a67c80a4
children 464004cc58e4 d28015a513a9
comparison
equal deleted inserted replaced
18225:4b5fed5cb038 18226:5cfa2e63d2fd
1212 purple_proxy_info_get_password(proxy_info)); 1212 purple_proxy_info_get_password(proxy_info));
1213 pidgin_set_accessible_label (entry, label); 1213 pidgin_set_accessible_label (entry, label);
1214 } 1214 }
1215 1215
1216 gtk_widget_show_all(ret); 1216 gtk_widget_show_all(ret);
1217 if (proxy_info == NULL || 1217 /* Only hide table if not running gnome otherwise we hide the IP address table! */
1218 if (!purple_running_gnome() && (proxy_info == NULL ||
1218 purple_proxy_info_get_type(proxy_info) == PURPLE_PROXY_NONE || 1219 purple_proxy_info_get_type(proxy_info) == PURPLE_PROXY_NONE ||
1219 purple_proxy_info_get_type(proxy_info) == PURPLE_PROXY_USE_ENVVAR) 1220 purple_proxy_info_get_type(proxy_info) == PURPLE_PROXY_USE_ENVVAR))
1220 gtk_widget_hide(table); 1221 gtk_widget_hide(table);
1221 return ret; 1222 return ret;
1222 } 1223 }
1223 1224
1224 #ifndef _WIN32 1225 #ifndef _WIN32