summaryrefslogtreecommitdiffstats
path: root/src/dialogs/clonetiler.cpp
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2007-01-16 17:05:03 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2007-01-16 17:05:03 +0000
commite72d59594309e9e7ef85a65af10c740a9d413f51 (patch)
tree085ff5223edc4a57d05aed2e2819964df5859837 /src/dialogs/clonetiler.cpp
parentunblur per author's request (diff)
downloadinkscape-e72d59594309e9e7ef85a65af10c740a9d413f51.tar.gz
inkscape-e72d59594309e9e7ef85a65af10c740a9d413f51.zip
fix filter area clipping when blurring a squeezed object
(bzr r2221)
Diffstat (limited to 'src/dialogs/clonetiler.cpp')
-rw-r--r--src/dialogs/clonetiler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dialogs/clonetiler.cpp b/src/dialogs/clonetiler.cpp
index 172f4f677..c0acea533 100644
--- a/src/dialogs/clonetiler.cpp
+++ b/src/dialogs/clonetiler.cpp
@@ -1307,7 +1307,7 @@ clonetiler_apply (GtkWidget *widget, void *)
// it's hard to figure out exact width/height of the tile without having an object
// that we can take bbox of; however here we only need a lower bound so that blur
// margins are not too small, and the perimeter should work
- SPFilter *constructed = new_filter_gaussian_blur(sp_desktop_document(desktop), radius, t.expansion(), perimeter, perimeter);
+ SPFilter *constructed = new_filter_gaussian_blur(sp_desktop_document(desktop), radius, t.expansion(), t.expansionX(), t.expansionY(), perimeter, perimeter);
sp_style_set_property_url (clone_object, "filter", SP_OBJECT(constructed), false);
}