plug-ins/common/file-gih.c setting a spin button's page_increment to 1 is

2008-10-06  Michael Natterer  <mitch@gimp.org>

	* plug-ins/common/file-gih.c
	* plug-ins/common/file-xbm.c: setting a spin button's
	page_increment to 1 is of no use, set it to 10 instead.


svn path=/trunk/; revision=27148
This commit is contained in:
Michael Natterer 2008-10-06 20:46:21 +00:00 committed by Michael Natterer
parent 6f1b06e065
commit 0c586f7b41
4 changed files with 15 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2008-10-06 Michael Natterer <mitch@gimp.org>
* plug-ins/common/file-gih.c
* plug-ins/common/file-xbm.c: setting a spin button's
page_increment to 1 is of no use, set it to 10 instead.
2008-10-06 Michael Natterer <mitch@gimp.org>
* app/plug-in/plug-in-menu-path.c (menu_path_mappings): add a

View File

@ -53,6 +53,11 @@ GimpRuler
</para>
<!-- ##### ARG GimpRuler:font-scale ##### -->
<para>
</para>
<!-- ##### FUNCTION gimp_ruler_new ##### -->
<para>

View File

@ -936,7 +936,7 @@ gih_save_dialog (gint32 image_ID)
spinbutton = gimp_spin_button_new (&adjustment,
gihparams.cellwidth,
2, gimp_image_width (image_ID), 1, 1, 0,
2, gimp_image_width (image_ID), 1, 10, 0,
1, 0);
gtk_box_pack_start (GTK_BOX (box), spinbutton, FALSE, FALSE, 0);
gtk_widget_show (spinbutton);
@ -959,7 +959,7 @@ gih_save_dialog (gint32 image_ID)
spinbutton = gimp_spin_button_new (&adjustment,
gihparams.cellheight,
2, gimp_image_height (image_ID), 1, 1, 0,
2, gimp_image_height (image_ID), 1, 10, 0,
1, 0);
gtk_box_pack_start (GTK_BOX (box), spinbutton, FALSE, FALSE, 0);
gtk_widget_show (spinbutton);

View File

@ -1271,7 +1271,7 @@ save_dialog (gint32 drawable_ID)
spinbutton = gimp_spin_button_new (&adj, xsvals.x_hot, 0,
gimp_drawable_width (drawable_ID) - 1,
1, 1, 0, 0, 0);
1, 10, 0, 0, 0);
gimp_table_attach_aligned (GTK_TABLE (table), 0, 0,
_("Hot spot _X:"), 0.0, 0.5,
spinbutton, 1, TRUE);
@ -1281,7 +1281,7 @@ save_dialog (gint32 drawable_ID)
spinbutton = gimp_spin_button_new (&adj, xsvals.y_hot, 0,
gimp_drawable_height (drawable_ID) - 1,
1, 1, 0, 0, 0);
1, 10, 0, 0, 0);
gimp_table_attach_aligned (GTK_TABLE (table), 0, 1,
_("Hot spot _Y:"), 0.0, 0.5,
spinbutton, 1, TRUE);