diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2008-08-02 20:48:22 +0000 |
|---|---|---|
| committer | johanengelen <johanengelen@users.sourceforge.net> | 2008-08-02 20:48:22 +0000 |
| commit | f956dfea15da6e9de55f3784500bc31235f8a155 (patch) | |
| tree | 8a01435dbd8c4c961bedb68a9f650ca2822aad8b /src | |
| parent | whitespace (diff) | |
| download | inkscape-f956dfea15da6e9de55f3784500bc31235f8a155.tar.gz inkscape-f956dfea15da6e9de55f3784500bc31235f8a155.zip | |
lpe spiro: if path is closed it does not matter to what initial pointtype is initialized.
(bzr r6528)
Diffstat (limited to 'src')
| -rw-r--r-- | src/live_effects/lpe-spiro.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/live_effects/lpe-spiro.cpp b/src/live_effects/lpe-spiro.cpp index afa5dbc4d..657ffc10b 100644 --- a/src/live_effects/lpe-spiro.cpp +++ b/src/live_effects/lpe-spiro.cpp @@ -126,7 +126,7 @@ LPESpiro::doEffect(SPCurve * curve) Geom::Point p = path_it->front().pointAt(0); path[ip].x = p[X]; path[ip].y = p[Y]; - path[ip].ty = path_it->closed() ? 'c' : '{' ; // for closed paths, this might change depending on whether the closing is smooth or not + path[ip].ty = '{' ; // for closed paths, this is overwritten ip++; } |
