changed default grid to a 10x10 grid of solid lines (bug #539318).

2008-07-04  Sven Neumann  <sven@gimp.org>

	* app/core/gimpgrid.c: changed default grid to a 10x10 grid of
	solid lines (bug #539318).


svn path=/trunk/; revision=26055
This commit is contained in:
Sven Neumann
2008-07-04 06:52:40 +00:00
committed by Sven Neumann
parent b5cd9ab460
commit adfc3bd6f7
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2008-07-04 Sven Neumann <sven@gimp.org>
* app/core/gimpgrid.c: changed default grid to a 10x10 grid of
solid lines (bug #539318).
2008-07-03 Sven Neumann <sven@gimp.org>
* app/actions/dialogs-actions.c (dialogs_toplevel_actions):

View File

@ -83,7 +83,7 @@ gimp_grid_class_init (GimpGridClass *klass)
"style",
N_("Line style used for the grid."),
GIMP_TYPE_GRID_STYLE,
GIMP_GRID_INTERSECTIONS,
GIMP_GRID_SOLID,
GIMP_PARAM_STATIC_STRINGS);
GIMP_CONFIG_INSTALL_PROP_RGB (object_class, PROP_FGCOLOR,
"fgcolor",
@ -99,12 +99,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, 32.0,
1.0, GIMP_MAX_IMAGE_SIZE, 10.0,
GIMP_PARAM_STATIC_STRINGS);
GIMP_CONFIG_INSTALL_PROP_DOUBLE (object_class, PROP_YSPACING,
"yspacing",
N_("Vertical spacing of grid lines."),
1.0, GIMP_MAX_IMAGE_SIZE, 32.0,
1.0, GIMP_MAX_IMAGE_SIZE, 10.0,
GIMP_PARAM_STATIC_STRINGS);
GIMP_CONFIG_INSTALL_PROP_UNIT (object_class, PROP_SPACING_UNIT,
"spacing-unit", NULL,