diff options
| author | Jabier Arraiza <jabier.arraiza@marker.es> | 2018-03-09 23:37:22 +0000 |
|---|---|---|
| committer | Jabier Arraiza <jabier.arraiza@marker.es> | 2018-03-26 17:48:34 +0000 |
| commit | e91d79e807ad5072378745e3a2ce3f2cedbfc850 (patch) | |
| tree | 751c35fa9c8aeccc8cfb3734c4fd8a5f154ed6c6 /src/ui/tool/path-manipulator.cpp | |
| parent | Fixing refs (diff) | |
| download | inkscape-e91d79e807ad5072378745e3a2ce3f2cedbfc850.tar.gz inkscape-e91d79e807ad5072378745e3a2ce3f2cedbfc850.zip | |
Allow path move
Diffstat (limited to 'src/ui/tool/path-manipulator.cpp')
| -rw-r--r-- | src/ui/tool/path-manipulator.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ui/tool/path-manipulator.cpp b/src/ui/tool/path-manipulator.cpp index 67d914095..192a02fe2 100644 --- a/src/ui/tool/path-manipulator.cpp +++ b/src/ui/tool/path-manipulator.cpp @@ -1511,7 +1511,8 @@ void PathManipulator::_setGeometry() if (empty()) return; if (SPCurve * original = _path->getCurveBeforeLPE()){ if(!_spcurve->is_equal(original)) { - _path->setCurveBeforeLPE(_spcurve, false, false); + _path->setCurveBeforeLPE(_spcurve, false); + sp_lpe_item_update_patheffect(_path, true, false); original->unref(); } } else if(!_spcurve->is_equal(_path->getCurve(true))) { |
