mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-25 21:21:21 +00:00
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.
This commit is contained in:
parent
956bcb4393
commit
b69212f681
@ -1,5 +1,8 @@
|
||||
2006-06-16 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkprintunixdialog.c (add_option_to_table): Don't grow
|
||||
additional columns.
|
||||
|
||||
* gtk/gtkprintbackend.h: Add a GtkPrintSettings parameter to the
|
||||
printer_create_cairo_surface method.
|
||||
|
||||
|
@ -1,5 +1,8 @@
|
||||
2006-06-16 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkprintunixdialog.c (add_option_to_table): Don't grow
|
||||
additional columns.
|
||||
|
||||
* gtk/gtkprintbackend.h: Add a GtkPrintSettings parameter to the
|
||||
printer_create_cairo_surface method.
|
||||
|
||||
|
@ -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)))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user