Mercurial > pidgin.yaz
changeset 28854:9e7ec018d784
Make the proxy server port entry a spin button instead. Paul noticed this
when we discussed the previous changes.
author | John Bailey <rekkanoryo@rekkanoryo.org> |
---|---|
date | Mon, 02 Nov 2009 02:39:00 +0000 |
parents | 312723475233 |
children | da5f35ec5785 |
files | pidgin/gtkprefs.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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",