changeset 9662:cedb8474b255

[gaim-migrate @ 10510] Joe Shaw took the initiative to fix his own bug. fix verified by rizzo. thanks to both committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Wed, 04 Aug 2004 02:57:45 +0000
parents 52319a1d9a55
children 318d14658f95
files src/gtkaccount.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/gtkaccount.c	Wed Aug 04 02:51:59 2004 +0000
+++ b/src/gtkaccount.c	Wed Aug 04 02:57:45 2004 +0000
@@ -1222,7 +1222,7 @@
 		dialog->new_proxy_type = type;
 #if GTK_CHECK_VERSION(2,4,0)
 		gtk_combo_box_set_active(GTK_COMBO_BOX(dialog->proxy_dropdown),
-				type - 1);
+				type + 1);
 #else
 		gtk_option_menu_set_history(GTK_OPTION_MENU(dialog->proxy_dropdown),
 				(int)type + 1);