changed minimum brush radius from 1.0 to 0.1.

2004-11-06  Sven Neumann  <sven@gimp.org>

	* app/core/gimpbrushgenerated.c: changed minimum brush radius from
	1.0 to 0.1.
This commit is contained in:
Sven Neumann 2004-11-06 19:12:52 +00:00 committed by Sven Neumann
parent 1fdcd8bee8
commit 639dc4502f
4 changed files with 6 additions and 3 deletions

View File

@ -1,5 +1,8 @@
2004-11-06 Sven Neumann <sven@gimp.org>
* app/core/gimpbrushgenerated.c: changed minimum brush radius from
1.0 to 0.1.
* app/widgets/gimpbrusheditor.c: allow a smaller brush radius to
be set in the brush editor. Fixes bug #157508.

View File

@ -134,7 +134,7 @@ gimp_brush_generated_class_init (GimpBrushGeneratedClass *klass)
G_PARAM_CONSTRUCT));
g_object_class_install_property (object_class, PROP_RADIUS,
g_param_spec_double ("radius", NULL, NULL,
1.0, 1000.0, 5.0,
0.1, 1000.0, 5.0,
G_PARAM_READWRITE |
G_PARAM_CONSTRUCT));
g_object_class_install_property (object_class, PROP_SPIKES,

View File

@ -134,7 +134,7 @@ gimp_brush_generated_class_init (GimpBrushGeneratedClass *klass)
G_PARAM_CONSTRUCT));
g_object_class_install_property (object_class, PROP_RADIUS,
g_param_spec_double ("radius", NULL, NULL,
1.0, 1000.0, 5.0,
0.1, 1000.0, 5.0,
G_PARAM_READWRITE |
G_PARAM_CONSTRUCT));
g_object_class_install_property (object_class, PROP_SPIKES,

View File

@ -134,7 +134,7 @@ gimp_brush_generated_class_init (GimpBrushGeneratedClass *klass)
G_PARAM_CONSTRUCT));
g_object_class_install_property (object_class, PROP_RADIUS,
g_param_spec_double ("radius", NULL, NULL,
1.0, 1000.0, 5.0,
0.1, 1000.0, 5.0,
G_PARAM_READWRITE |
G_PARAM_CONSTRUCT));
g_object_class_install_property (object_class, PROP_SPIKES,