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>
|
2005-01-26 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
* libgimpconfig/Makefile.am: make LIBADD really work.
|
* 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,
|
GIMP_CONFIG_INSTALL_PROP_DOUBLE (object_class, PROP_XSPACING,
|
||||||
"xspacing",
|
"xspacing",
|
||||||
N_("Horizontal spacing of grid lines."),
|
N_("Horizontal spacing of grid lines."),
|
||||||
1.0, GIMP_MAX_IMAGE_SIZE, 10.0,
|
1.0, GIMP_MAX_IMAGE_SIZE, 32.0,
|
||||||
0);
|
0);
|
||||||
GIMP_CONFIG_INSTALL_PROP_DOUBLE (object_class, PROP_YSPACING,
|
GIMP_CONFIG_INSTALL_PROP_DOUBLE (object_class, PROP_YSPACING,
|
||||||
"yspacing",
|
"yspacing",
|
||||||
N_("Vertical spacing of grid lines."),
|
N_("Vertical spacing of grid lines."),
|
||||||
1.0, GIMP_MAX_IMAGE_SIZE, 10.0,
|
1.0, GIMP_MAX_IMAGE_SIZE, 32.0,
|
||||||
0);
|
0);
|
||||||
GIMP_CONFIG_INSTALL_PROP_UNIT (object_class, PROP_SPACING_UNIT,
|
GIMP_CONFIG_INSTALL_PROP_UNIT (object_class, PROP_SPACING_UNIT,
|
||||||
"spacing-unit", NULL,
|
"spacing-unit", NULL,
|
||||||
|
|
Loading…
Reference in New Issue