# HG changeset patch # User Elliott Sales de Andrade # Date 1244682815 0 # Node ID 65a79c501f5832c50581cb8e0da821259a4c2b68 # Parent 211b59ac634544bc4b67aa63e8a5733e50ef6c9e The FT table needs to have one more row to be correct, though it seems to work without for whatever reason. References #9329. diff -r 211b59ac6345 -r 65a79c501f58 pidgin/gtkft.c --- a/pidgin/gtkft.c Wed Jun 10 03:40:27 2009 +0000 +++ b/pidgin/gtkft.c Thu Jun 11 01:13:35 2009 +0000 @@ -705,7 +705,7 @@ }; /* Setup the initial table */ - dialog->table = table = gtk_table_new(G_N_ELEMENTS(labels), 2, FALSE); + dialog->table = table = gtk_table_new(G_N_ELEMENTS(labels) + 1, 2, FALSE); gtk_table_set_row_spacings(GTK_TABLE(table), PIDGIN_HIG_BOX_SPACE); gtk_table_set_col_spacings(GTK_TABLE(table), PIDGIN_HIG_BOX_SPACE);