mirror of https://github.com/GNOME/gimp.git
allow setting compression level 0 from the UI.
2002-11-09 Manish Singh <yosh@gimp.org> * plug-ins/common/png.c: allow setting compression level 0 from the UI.
This commit is contained in:
parent
2fd6f782a0
commit
af3cde410e
|
@ -1,3 +1,8 @@
|
|||
2002-11-09 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* plug-ins/common/png.c: allow setting compression level 0 from
|
||||
the UI.
|
||||
|
||||
2002-11-10 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/core/gimpdrawable-transform.c (gimp_drawable_transform_paste):
|
||||
|
|
|
@ -1270,7 +1270,7 @@ save_dialog (void)
|
|||
G_CALLBACK (gimp_toggle_button_update), &pngvals.time);
|
||||
|
||||
scale_data = gtk_adjustment_new (pngvals.compression_level,
|
||||
1.0, 9.0, 1.0, 1.0, 0.0);
|
||||
0.0, 9.0, 1.0, 1.0, 0.0);
|
||||
scale = gtk_hscale_new (GTK_ADJUSTMENT (scale_data));
|
||||
gtk_widget_set_size_request (scale, SCALE_WIDTH, -1);
|
||||
gtk_scale_set_value_pos (GTK_SCALE (scale), GTK_POS_TOP);
|
||||
|
|
Loading…
Reference in New Issue