diff options
| author | Thomas Holder <speleo3@users.sourceforge.net> | 2008-12-14 11:00:28 +0000 |
|---|---|---|
| committer | speleo3 <speleo3@users.sourceforge.net> | 2008-12-14 11:00:28 +0000 |
| commit | 281a151ba293b3f98ef06edf2b412ed3221eb34b (patch) | |
| tree | 156a9c916cc80d9f9382d4ae8084114941da1416 | |
| parent | fix build for commit 20341 (diff) | |
| download | inkscape-281a151ba293b3f98ef06edf2b412ed3221eb34b.tar.gz inkscape-281a151ba293b3f98ef06edf2b412ed3221eb34b.zip | |
fixed part 2 of bug #168372
(bzr r7006)
| -rw-r--r-- | src/nodepath.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nodepath.cpp b/src/nodepath.cpp index f284d818e..add070d1f 100644 --- a/src/nodepath.cpp +++ b/src/nodepath.cpp @@ -1065,6 +1065,9 @@ static void sp_nodepath_set_line_type(Inkscape::NodePath::Node *end, NRPathcode if (end->type == Inkscape::NodePath::NODE_AUTO) end->type = Inkscape::NodePath::NODE_SMOOTH; + start->n.pos = start->pos; + end->p.pos = end->pos; + sp_node_adjust_handle(start, -1); sp_node_adjust_handle(end, 1); |
