summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarc Jeanmougin <marc@jeanmougin.fr>2019-06-20 14:01:22 +0000
committerMarc Jeanmougin <marc@jeanmougin.fr>2019-06-20 14:01:22 +0000
commit59dc091e013dfcd06c221e804f55a4523254de28 (patch)
tree462ab0f770a97c19ede71549808b648cdd7528e9 /src
parentEnsure arena is released when the WMF failes to save (diff)
parentFix bounding box cache invalidation for filters (diff)
downloadinkscape-59dc091e013dfcd06c221e804f55a4523254de28.tar.gz
inkscape-59dc091e013dfcd06c221e804f55a4523254de28.zip
Merge branch 'fix-bbox-filter' of gitlab.com:octycs/inkscape
Diffstat (limited to 'src')
-rw-r--r--src/object/sp-shape.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/object/sp-shape.cpp b/src/object/sp-shape.cpp
index eb4c01e54..011dc9edc 100644
--- a/src/object/sp-shape.cpp
+++ b/src/object/sp-shape.cpp
@@ -118,13 +118,13 @@ Inkscape::XML::Node* SPShape::write(Inkscape::XML::Document *xml_doc, Inkscape::
}
void SPShape::update(SPCtx* ctx, guint flags) {
- // std::cout << "SPShape::update(): " << (getId()?getId():"null") << std::endl;
- SPLPEItem::update(ctx, flags);
-
// Any update can change the bounding box,
// so the cached version can no longer be used.
bbox_cache_is_valid = false;
+ // std::cout << "SPShape::update(): " << (getId()?getId():"null") << std::endl;
+ SPLPEItem::update(ctx, flags);
+
/* This stanza checks that an object's marker style agrees with
* the marker objects it has allocated. sp_shape_set_marker ensures
* that the appropriate marker objects are present (or absent) to