[gimp] app: Fix missing outline with aspect 0.0



commit 75593c3fea32daccf633bb95f8d8c43c90d9cf7d
Author: Alexia Death <alexiadeath gmail com>
Date:   Wed Feb 2 01:04:24 2011 +0200

    app: Fix missing outline with aspect 0.0

 app/paint/gimpbrushcore.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/app/paint/gimpbrushcore.c b/app/paint/gimpbrushcore.c
index 33bf580..b1abcd3 100644
--- a/app/paint/gimpbrushcore.c
+++ b/app/paint/gimpbrushcore.c
@@ -953,7 +953,7 @@ gimp_brush_core_create_boundary (GimpBrushCore    *core,
           MAX (core->main_brush->mask->width,
                core->main_brush->mask->height);
 
-  if ((scale > 0.0) && (paint_options->brush_aspect_ratio != 0.0))
+  if (scale > 0.0)
     {
       scale = gimp_brush_clamp_scale (core->main_brush, scale);
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]