diff options
| author | Marc Jeanmougin <marc@jeanmougin.fr> | 2018-03-28 15:28:12 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marc@jeanmougin.fr> | 2018-03-28 15:28:12 +0000 |
| commit | 453fa4505b7fc3bfb72bb7116fa563d47a8377ed (patch) | |
| tree | 537f57f7d62de8bd19e4dcf79c8db1c0e9951d28 | |
| parent | Merge branch 'appstream-fixes' of gitlab.com:Pointedstick/inkscape (diff) | |
| parent | Fix bug: 1738504 (diff) | |
| download | inkscape-453fa4505b7fc3bfb72bb7116fa563d47a8377ed.tar.gz inkscape-453fa4505b7fc3bfb72bb7116fa563d47a8377ed.zip | |
Merge branch 'master' of gitlab.com:inkscape/inkscape
| -rw-r--r-- | src/object/sp-item-group.cpp | 1 | ||||
| -rw-r--r-- | src/object/sp-shape.cpp | 2 | ||||
| -rw-r--r-- | src/ui/tools/measure-tool.cpp | 1 |
3 files changed, 2 insertions, 2 deletions
diff --git a/src/object/sp-item-group.cpp b/src/object/sp-item-group.cpp index 3d89a524d..ac467f627 100644 --- a/src/object/sp-item-group.cpp +++ b/src/object/sp-item-group.cpp @@ -925,6 +925,7 @@ void SPGroup::update_patheffect(bool write) { } } } + this->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG); } static void diff --git a/src/object/sp-shape.cpp b/src/object/sp-shape.cpp index 0687ef1fa..4af596d1e 100644 --- a/src/object/sp-shape.cpp +++ b/src/object/sp-shape.cpp @@ -764,9 +764,9 @@ void SPShape::update_patheffect(bool write) } else { repr->setAttribute("d", NULL); } - this->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG); } c_lpe->unref(); + this->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG); } } diff --git a/src/ui/tools/measure-tool.cpp b/src/ui/tools/measure-tool.cpp index 724e121d9..ba3e767b7 100644 --- a/src/ui/tools/measure-tool.cpp +++ b/src/ui/tools/measure-tool.cpp @@ -1321,7 +1321,6 @@ void MeasureTool::showCanvasItems(bool to_guides, bool to_item, bool to_phantom, curve->unref(); continue; } - curve->transform(item->transform); calculate_intersections(desktop, item, lineseg, curve, intersection_times); if (iter == te_get_layout(item)->end()) { |
