diff options
| author | Nathan Lee <2431820-nathanal@users.noreply.gitlab.com> | 2019-04-06 23:56:07 +0000 |
|---|---|---|
| committer | Thomas Holder <thomas@thomas-holder.de> | 2019-04-16 20:29:33 +0000 |
| commit | d7d7b926b4df360dde69d630004a337439f02cb9 (patch) | |
| tree | 65f79d181a2e1b3af3a33df8f59767cb1c87d9dd /src/ui/tool | |
| parent | Restore select toolbar lock button (diff) | |
| download | inkscape-d7d7b926b4df360dde69d630004a337439f02cb9.tar.gz inkscape-d7d7b926b4df360dde69d630004a337439f02cb9.zip | |
Regression fix (update paths when dragging nodes)
Fixes https://gitlab.com/inkscape/inkscape/issues/169
Diffstat (limited to 'src/ui/tool')
| -rw-r--r-- | src/ui/tool/path-manipulator.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
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. |
