summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Bailey <rekkanoryo@rekkanoryo.org>2009-11-16 00:54:23 +0000
committerJohn Bailey <rekkanoryo@rekkanoryo.org>2009-11-16 00:54:23 +0000
commitb52f2798629edd05437c8699934d9d6af330d10b (patch)
treeec4347fd4b62e95bef4e6024bb505bdfd9fc9500
parent5d125bc0d87d76f860cd4389a1204ecb29f06807 (diff)
downloadpidgin-b52f2798629edd05437c8699934d9d6af330d10b.tar.gz
Oops. If the user was running GNOME, he/she wouldn't see the proxy and browser
tabs, so the blurbs I just moved wouldn't be visible.
-rw-r--r--pidgin/gtkprefs.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/pidgin/gtkprefs.c b/pidgin/gtkprefs.c
index 569559ee4b..d9ea6d0f69 100644
--- a/pidgin/gtkprefs.c
+++ b/pidgin/gtkprefs.c
@@ -2873,16 +2873,15 @@ prefs_notebook_init(void)
#ifndef _WIN32
/* We use the registered default browser in windows */
- /* if the user is running gnome 2.x or Mac OS X, hide the browsers tab */
- if((purple_running_gnome() == FALSE) && (purple_running_osx() == FALSE))
+ /* if the user is running Mac OS X, hide the browsers tab */
+ if(purple_running_osx() == FALSE)
prefs_notebook_add_page(_("Browser"), browser_page(), notebook_page++);
#endif
prefs_notebook_add_page(_("Conversations"), conv_page(), notebook_page++);
prefs_notebook_add_page(_("Logging"), logging_page(), notebook_page++);
prefs_notebook_add_page(_("Network"), network_page(), notebook_page++);
- if(purple_running_gnome() == FALSE)
- prefs_notebook_add_page(_("Proxy"), proxy_page(), notebook_page++);
+ prefs_notebook_add_page(_("Proxy"), proxy_page(), notebook_page++);
prefs_notebook_add_page(_("Sounds"), sound_page(), notebook_page++);
prefs_notebook_add_page(_("Status / Idle"), away_page(), notebook_page++);