mirror of https://github.com/GNOME/gimp.git
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:
parent
99dff763f5
commit
c4a8618db9
|
@ -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.
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue