From 1fdcd8bee8019b2d370d423c49047e278c007aeb Mon Sep 17 00:00:00 2001 From: Sven Neumann Date: Sat, 6 Nov 2004 18:55:06 +0000 Subject: [PATCH] allow a smaller brush radius to be set in the brush editor. Fixes bug 2004-11-06 Sven Neumann * app/widgets/gimpbrusheditor.c: allow a smaller brush radius to be set in the brush editor. Fixes bug #157508. --- ChangeLog | 5 +++++ app/widgets/gimpbrusheditor.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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));