diff options
| author | bulia byak <buliabyak@gmail.com> | 2007-04-16 23:39:53 +0000 |
|---|---|---|
| committer | buliabyak <buliabyak@users.sourceforge.net> | 2007-04-16 23:39:53 +0000 |
| commit | 326a09467ae85ba19ed8ad72d63e4c3313267410 (patch) | |
| tree | 5c2199fa2dbaf5127f8ac7db5f58d31d61b59e61 /src/dyna-draw-context.cpp | |
| parent | fix selecting in groups with alt (diff) | |
| download | inkscape-326a09467ae85ba19ed8ad72d63e4c3313267410.tar.gz inkscape-326a09467ae85ba19ed8ad72d63e4c3313267410.zip | |
silly error - lazy boolean evaluation bit me
(bzr r2908)
Diffstat (limited to 'src/dyna-draw-context.cpp')
| -rw-r--r-- | src/dyna-draw-context.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dyna-draw-context.cpp b/src/dyna-draw-context.cpp index d82754dba..ba8d796a0 100644 --- a/src/dyna-draw-context.cpp +++ b/src/dyna-draw-context.cpp @@ -736,7 +736,8 @@ sp_ddc_dilate (SPDynaDrawContext *dc, NR::Point p, bool expand) SPItem *item = (SPItem *) items->data; - did = did || sp_ddc_dilate_recursive (item, p, expand, radius, offset); + if (sp_ddc_dilate_recursive (item, p, expand, radius, offset)) + did = true; } |
