summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNathan Lee <2431820-nathanal@users.noreply.gitlab.com>2019-04-06 23:56:07 +0000
committerThomas Holder <thomas@thomas-holder.de>2019-04-16 20:29:33 +0000
commitd7d7b926b4df360dde69d630004a337439f02cb9 (patch)
tree65f79d181a2e1b3af3a33df8f59767cb1c87d9dd /src
parentRestore select toolbar lock button (diff)
downloadinkscape-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')
-rw-r--r--src/ui/tool/path-manipulator.cpp7
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.