diff options
author | Matthias Clasen <mclasen@redhat.com> | 2006-06-16 18:33:29 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-06-16 18:33:29 +0000 |
commit | b69212f681604ed33815b65efb60e17d51c91481 (patch) | |
tree | a362e4bea36bb32faa2cc1c2a4a7ead1b8226e99 /gtk | |
parent | 956bcb4393329aeeed26c409f44201b8c3524eb4 (diff) | |
download | gtk+-b69212f681604ed33815b65efb60e17d51c91481.tar.gz |
Don't grow additional columns.
2006-06-16 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkprintunixdialog.c (add_option_to_table): Don't grow
additional columns.
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/gtkprintunixdialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkprintunixdialog.c b/gtk/gtkprintunixdialog.c index 6fb9e9c500..87c8cc3b0e 100644 --- a/gtk/gtkprintunixdialog.c +++ b/gtk/gtkprintunixdialog.c @@ -783,7 +783,7 @@ add_option_to_table (GtkPrinterOption *option, gtk_widget_show (widget); row = table->nrows; - gtk_table_resize (table, table->nrows + 1, table->ncols + 1); + gtk_table_resize (table, table->nrows + 1, 2); if (gtk_printer_option_widget_has_external_label (GTK_PRINTER_OPTION_WIDGET (widget))) { |