fixed table size.

2004-11-13  Sven Neumann  <sven@gimp.org>

	* plug-ins/common/retinex.c (retinex_dialog): fixed table size.
This commit is contained in:
Sven Neumann 2004-11-13 03:28:33 +00:00 committed by Sven Neumann
parent 7945dc7a4b
commit 2cb5f99887
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2004-11-13 Sven Neumann <sven@gimp.org>
* plug-ins/common/retinex.c (retinex_dialog): fixed table size.
2004-11-13 Simon Budig <simon@gimp.org>
* app/core/gimpimage-merge.c: Return the active layer instead of
@ -8,7 +12,7 @@
2004-11-12 Sven Neumann <sven@gimp.org>
* app/config/gimpconfig-dump.c better fix for bug #157971.
* app/config/gimpconfig-dump.c: better fix for bug #157971.
* docs/gimprc.5.in: regenerated.

View File

@ -333,7 +333,7 @@ retinex_dialog (GimpDrawable *drawable)
G_CALLBACK (gimp_preview_invalidate),
preview);
table = gtk_table_new (3, 4, FALSE);
table = gtk_table_new (3, 3, FALSE);
gtk_table_set_col_spacings (GTK_TABLE (table), 6);
gtk_table_set_row_spacings (GTK_TABLE (table), 6);
gtk_box_pack_start (GTK_BOX (main_vbox), table, FALSE, FALSE, 0);