increased the upper limit for the brush radius to 1000. Fixes bug #109434.

2003-03-30  Sven Neumann  <sven@gimp.org>

	* app/widgets/gimpbrusheditor.c: increased the upper limit for the
	brush radius to 1000. Fixes bug #109434.
This commit is contained in:
Sven Neumann 2003-03-30 19:30:10 +00:00 committed by Sven Neumann
parent e91d7943ae
commit f50c7a5748
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-03-30 Sven Neumann <sven@gimp.org>
* app/widgets/gimpbrusheditor.c: increased the upper limit for the
brush radius to 1000. Fixes bug #109434.
2003-03-30 Michael Natterer <mitch@gimp.org>
* app/core/gimpimage-resize.c (gimp_image_resize): shut up compiler.

View File

@ -128,7 +128,7 @@ gimp_brush_editor_init (GimpBrushEditor *editor)
GTK_ADJUSTMENT (gimp_scale_entry_new (GTK_TABLE (editor->options_table),
0, 0,
_("Radius:"), -1, 5,
0.0, 1.0, 100.0, 0.1, 1.0, 1,
0.0, 1.0, 1000.0, 0.1, 1.0, 1,
TRUE, 0.0, 0.0,
NULL, NULL));