From d7d7b926b4df360dde69d630004a337439f02cb9 Mon Sep 17 00:00:00 2001 From: Nathan Lee <2431820-nathanal@users.noreply.gitlab.com> Date: Sun, 7 Apr 2019 09:56:07 +1000 Subject: Regression fix (update paths when dragging nodes) Fixes https://gitlab.com/inkscape/inkscape/issues/169 --- src/ui/tool/path-manipulator.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/ui/tool/path-manipulator.cpp') diff --git a/src/ui/tool/path-manipulator.cpp b/src/ui/tool/path-manipulator.cpp index 1d4bb3999..86f497ba7 100644 --- a/src/ui/tool/path-manipulator.cpp +++ b/src/ui/tool/path-manipulator.cpp @@ -1392,9 +1392,12 @@ void PathManipulator::_createGeometryFromControlPoints(bool alert_LPE) } } } - if (_live_outline) + if (_live_outline) { _updateOutline(); - _setGeometry(); + } + if (_live_objects) { + _setGeometry(); + } } /** Build one segment of the geometric representation. -- cgit v1.2.3