mirror of https://github.com/GNOME/gimp.git
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:
parent
7945dc7a4b
commit
2cb5f99887
|
@ -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.
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue