diff options
| author | Jabier Arraiza Cenoz <jabier.arraiza@marker.es> | 2016-01-05 16:25:01 +0000 |
|---|---|---|
| committer | Jabiertxof <jtx@jtx.marker.es> | 2016-01-05 16:25:01 +0000 |
| commit | fe78d7dbadf8d2337dfcf2a6130e988119efa3c0 (patch) | |
| tree | c4d86b2ce63a9a6e361601a0076334a681119b1e /src/ui/tool/path-manipulator.cpp | |
| parent | Improve constant definitions (diff) | |
| download | inkscape-fe78d7dbadf8d2337dfcf2a6130e988119efa3c0.tar.gz inkscape-fe78d7dbadf8d2337dfcf2a6130e988119efa3c0.zip | |
Fix wrong symm node type in BSpline converted to Bezier
(bzr r14562)
Diffstat (limited to 'src/ui/tool/path-manipulator.cpp')
| -rw-r--r-- | src/ui/tool/path-manipulator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/tool/path-manipulator.cpp b/src/ui/tool/path-manipulator.cpp index 01dbf13e9..f4790c317 100644 --- a/src/ui/tool/path-manipulator.cpp +++ b/src/ui/tool/path-manipulator.cpp @@ -1292,7 +1292,7 @@ double PathManipulator::_bsplineHandlePosition(Handle *h, bool check_other) line_inside_nodes->moveto(n->position()); line_inside_nodes->lineto(next_node->position()); if(!are_near(h->position(), n->position())){ - pos = Geom::nearest_time(Geom::Point(h->position()[X] - HANDLE_CUBIC_GAP, h->position()[Y] - HANDLE_CUBIC_GAP), *line_inside_nodes->first_segment()); + pos = Geom::nearest_time(Geom::Point(h->position()[X] - HANDLE_CUBIC_GAP, h->position()[Y] + HANDLE_CUBIC_GAP), *line_inside_nodes->first_segment()); } } if (pos == NO_POWER && check_other){ |
