# HG changeset patch # User John Bailey # Date 1257129540 0 # Node ID 9e7ec018d7841016676d08712823085c18337f07 # Parent 31272347523355a4029b7dd622186930cb54569e Make the proxy server port entry a spin button instead. Paul noticed this when we discussed the previous changes. diff -r 312723475233 -r 9e7ec018d784 pidgin/gtkprefs.c --- a/pidgin/gtkprefs.c Mon Nov 02 02:18:09 2009 +0000 +++ b/pidgin/gtkprefs.c Mon Nov 02 02:39:00 2009 +0000 @@ -2021,7 +2021,7 @@ gtk_misc_set_alignment(GTK_MISC(label), 1.0, 0.5); gtk_table_attach(GTK_TABLE(table), label, 2, 3, 0, 1, GTK_FILL, 0, 0, 0); - entry = gtk_entry_new(); + entry = gtk_spin_button_new_with_range(0, 65535, 1); gtk_label_set_mnemonic_widget(GTK_LABEL(label), entry); gtk_table_attach(GTK_TABLE(table), entry, 3, 4, 0, 1, GTK_FILL, 0, 0, 0); g_signal_connect(G_OBJECT(entry), "changed",