changed default grid distance to 32 as suggested in bug #165367.

2005-01-27  Sven Neumann  <sven@gimp.org>

	* app/core/gimpgrid.c: changed default grid distance to 32 as
	suggested in bug #165367.
This commit is contained in:
Sven Neumann 2005-01-27 17:01:45 +00:00 committed by Sven Neumann
parent 99dff763f5
commit c4a8618db9
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2005-01-27 Sven Neumann <sven@gimp.org>
* app/core/gimpgrid.c: changed default grid distance to 32 as
suggested in bug #165367.
2005-01-26 Manish Singh <yosh@gimp.org>
* libgimpconfig/Makefile.am: make LIBADD really work.

View File

@ -141,12 +141,12 @@ gimp_grid_class_init (GimpGridClass *klass)
GIMP_CONFIG_INSTALL_PROP_DOUBLE (object_class, PROP_XSPACING,
"xspacing",
N_("Horizontal spacing of grid lines."),
1.0, GIMP_MAX_IMAGE_SIZE, 10.0,
1.0, GIMP_MAX_IMAGE_SIZE, 32.0,
0);
GIMP_CONFIG_INSTALL_PROP_DOUBLE (object_class, PROP_YSPACING,
"yspacing",
N_("Vertical spacing of grid lines."),
1.0, GIMP_MAX_IMAGE_SIZE, 10.0,
1.0, GIMP_MAX_IMAGE_SIZE, 32.0,
0);
GIMP_CONFIG_INSTALL_PROP_UNIT (object_class, PROP_SPACING_UNIT,
"spacing-unit", NULL,