diff --git a/ChangeLog b/ChangeLog index 4468ab8ea2..6aa21aea7c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2000-05-14 Tor Lillqvist + + * plug-ins/common/gpb.c (gih_save_dialog): Fix typo introduced + when gimp_spin_button_new() was taken into use. Now you can adjust + the cell height again. + 2000-05-14 Michael Natterer After a weekend of extensive mail exchange with the signal crew, @@ -76,7 +82,7 @@ * PLUGIN_MAINTAINERS * plug-ins/twain/* - * plug-ins/winsnap/*: Changed Craig Setera'a email address on his + * plug-ins/winsnap/*: Changed Craig Setera's email address on his request. 2000-05-11 Sven Neumann diff --git a/plug-ins/common/gpb.c b/plug-ins/common/gpb.c index 477741811c..ff74a44df6 100644 --- a/plug-ins/common/gpb.c +++ b/plug-ins/common/gpb.c @@ -223,7 +223,6 @@ size_adjustment_callback (GtkWidget *widget, if (adj->rank0 != NULL) gtk_adjustment_set_value (GTK_ADJUSTMENT (adj->rank0), *(adj->other_count) * *(adj->count)); - } static void @@ -412,7 +411,7 @@ gih_save_dialog (gint32 image_ID) spinbutton = gimp_spin_button_new (&adjustment, gihparms.cellheight, - gimp_image_height (image_ID), 1, 1, 1, 1, + 2, gimp_image_height (image_ID), 1, 1, 1, 1, 0); gtk_box_pack_start (GTK_BOX (box), spinbutton, FALSE, FALSE, 0); cellh_adjust.orientation = ORIENTATION_HORIZONTAL;