Bill Skaggs <weskaggs@primate.ucdavis.edu>

* app/widgets/gimpsizebox.c: give correct arguments to
	gimp_coordinates_new().  Fixes problem described in
	comment 6 of bug #162387.
This commit is contained in:
William Skaggs 2004-12-31 00:27:35 +00:00
parent c30a919b68
commit 129c953b6f
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2004-12-30 Bill Skaggs <weskaggs@primate.ucdavis.edu>
* app/widgets/gimpsizebox.c: give correct arguments to
gimp_coordinates_new(). Fixes problem described in
comment 6 of bug #162387.
2004-12-31 Sven Neumann <sven@gimp.org>
* configure.in: bumped gimp_app_version and gimp_user_version to 2.3.

View File

@ -221,10 +221,10 @@ gimp_size_box_constructor (GType type,
TRUE, TRUE,
_("_Width:"),
box->width, box->xresolution,
1, 1, 1, 10,
0, 100000, 0, box->width,
_("H_eight:"),
box->height, box->yresolution,
1, 1, 1, 10);
0, 100000, 0, box->height);
priv->size_entry = GIMP_SIZE_ENTRY (entry);
priv->size_chain = GIMP_COORDINATES_CHAINBUTTON (GIMP_SIZE_ENTRY (entry));