printunixdialog: fix a GtkTable->GtkGrid typo

Code was treating the GtkScrolledWindow as a grid, not the grid itself.
This commit is contained in:
Cosimo Cecchi 2011-10-24 16:31:50 -04:00
parent cd91ab9761
commit 99266c4ceb

View File

@ -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