From: Richard Kettlewell Date: Sat, 28 Jun 2008 18:04:29 +0000 (+0100) Subject: Correct row count in login window X-Git-Tag: 4.2~11^2~1 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/commitdiff_plain/6bdbecc264d37e4ec3d941db7ba0fcac0f6c1783 Correct row count in login window --- diff --git a/disobedience/login.c b/disobedience/login.c index 63e284b..df82672 100644 --- a/disobedience/login.c +++ b/disobedience/login.c @@ -226,7 +226,7 @@ void login_box(void) { G_CALLBACK(gtk_widget_destroyed), &login_window); gtk_window_set_title(GTK_WINDOW(login_window), "Login Details"); /* Construct the form */ - table = gtk_table_new(NLWIS + 1/*rows*/, 2/*columns*/, FALSE/*homogenous*/); + table = gtk_table_new(NLWIS/*rows*/, 2/*columns*/, FALSE/*homogenous*/); gtk_widget_set_style(table, tool_style); for(n = 0; n < NLWIS; ++n) { label = gtk_label_new(lwis[n].description);