diff --git a/ChangeLog b/ChangeLog index aa77c2115a..aba241f03e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-11-06 Sven Neumann + + * app/widgets/gimpbrusheditor.c: allow a smaller brush radius to + be set in the brush editor. Fixes bug #157508. + 2004-11-06 Sven Neumann * app/dialogs/scale-dialog.c (scale_dialog_reset): same fix here. diff --git a/app/widgets/gimpbrusheditor.c b/app/widgets/gimpbrusheditor.c index 53627d0308..4b95733507 100644 --- a/app/widgets/gimpbrusheditor.c +++ b/app/widgets/gimpbrusheditor.c @@ -151,7 +151,7 @@ gimp_brush_editor_init (GimpBrushEditor *editor) GTK_ADJUSTMENT (gimp_scale_entry_new (GTK_TABLE (editor->options_table), 0, row++, _("Radius:"), -1, 5, - 0.0, 1.0, 1000.0, 0.1, 1.0, 1, + 0.0, 0.1, 1000.0, 0.1, 1.0, 1, TRUE, 0.0, 0.0, NULL, NULL));