diff options
| author | Michael Soegtrop <MSoegtrop@yahoo.de> | 2016-05-23 20:36:18 +0000 |
|---|---|---|
| committer | Michael Soegtrop <MSoegtrop@yahoo.de> | 2016-05-23 20:36:18 +0000 |
| commit | 9b667f5ad22543b88067107425ec55ef972e2ff0 (patch) | |
| tree | 933384cbb74b5bca4c94417e1ebd6270688bbb9a /src/ui/tool/path-manipulator.cpp | |
| parent | Added bool LPE (diff) | |
| parent | Fix regression: restore order in resources (e.g. pattern list) (diff) | |
| download | inkscape-9b667f5ad22543b88067107425ec55ef972e2ff0.tar.gz inkscape-9b667f5ad22543b88067107425ec55ef972e2ff0.zip | |
Fixed Bool LPE review issues
(bzr r14876.2.2)
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 3b25439f3..de071dad3 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){ |
