From 99266c4ceb188da9f365a9a1f6700fd7272041df Mon Sep 17 00:00:00 2001 From: Cosimo Cecchi Date: Mon, 24 Oct 2011 16:31:50 -0400 Subject: [PATCH] printunixdialog: fix a GtkTable->GtkGrid typo Code was treating the GtkScrolledWindow as a grid, not the grid itself. --- gtk/gtkprintunixdialog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkprintunixdialog.c b/gtk/gtkprintunixdialog.c index a909fa7961..ac34dbe47a 100644 --- a/gtk/gtkprintunixdialog.c +++ b/gtk/gtkprintunixdialog.c @@ -1346,7 +1346,7 @@ setup_page_table (GtkPrinterOptionSet *options, add_option_to_table, table); - nrows = grid_rows (GTK_GRID (page)); + nrows = grid_rows (GTK_GRID (table)); if (nrows == 1) gtk_widget_hide (page); else