summaryrefslogtreecommitdiffstats
path: root/src/splivarot.cpp
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2007-03-13 21:35:25 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2007-03-13 21:35:25 +0000
commit2ea481297ce49e751863862e3bd1a9fc8938025b (patch)
tree8d2483c956c02c2c5c095cea7e5e374b536ac5a1 /src/splivarot.cpp
parentfixme comment (diff)
downloadinkscape-2ea481297ce49e751863862e3bd1a9fc8938025b.tar.gz
inkscape-2ea481297ce49e751863862e3bd1a9fc8938025b.zip
fix 1659445 without unfixing 1595030
(bzr r2636)
Diffstat (limited to 'src/splivarot.cpp')
-rw-r--r--src/splivarot.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/splivarot.cpp b/src/splivarot.cpp
index f5f0a6481..377a06015 100644
--- a/src/splivarot.cpp
+++ b/src/splivarot.cpp
@@ -442,10 +442,10 @@ sp_selected_path_boolop(bool_op bop, const unsigned int verb, const Glib::ustrin
// adjust style properties that depend on a possible transform in the source object in order
// to get a correct style attribute for the new path
SPItem* item_source = SP_ITEM(source);
- NR::Matrix i2d = sp_item_i2d_affine(item_source);
- sp_item_adjust_stroke(item_source, i2d.expansion());
- sp_item_adjust_pattern(item_source, i2d);
- sp_item_adjust_gradient(item_source, i2d);
+ NR::Matrix i2root = sp_item_i2root_affine(item_source);
+ sp_item_adjust_stroke(item_source, i2root.expansion());
+ sp_item_adjust_pattern(item_source, i2root);
+ sp_item_adjust_gradient(item_source, i2root);
Inkscape::XML::Node *repr_source = SP_OBJECT_REPR(source);