Thu, 11 Jun 2009 01:13:35 +0000
The FT table needs to have one more row to be correct, though it seems to
work without for whatever reason.
References #9329.
| pidgin/gtkft.c | file | annotate | diff | comparison | revisions |
--- 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);