summaryrefslogtreecommitdiffstats
path: root/src/sp-feblend.cpp
diff options
context:
space:
mode:
authorNiko Kiirala <niko@kiirala.com>2007-06-23 15:35:28 +0000
committerkiirala <kiirala@users.sourceforge.net>2007-06-23 15:35:28 +0000
commitbb9d08a3e32859491a125d8567f387a702795267 (patch)
tree3322ec862746beee7119d8e44e2e47185ae80916 /src/sp-feblend.cpp
parentAdded polar coordinates. (diff)
downloadinkscape-bb9d08a3e32859491a125d8567f387a702795267.tar.gz
inkscape-bb9d08a3e32859491a125d8567f387a702795267.zip
Using the blur slider no longer destroys filters already applied to the object
(bzr r3086)
Diffstat (limited to 'src/sp-feblend.cpp')
-rw-r--r--src/sp-feblend.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sp-feblend.cpp b/src/sp-feblend.cpp
index bedbf4f61..1c560e81b 100644
--- a/src/sp-feblend.cpp
+++ b/src/sp-feblend.cpp
@@ -187,8 +187,9 @@ sp_feBlend_set(SPObject *object, unsigned int key, gchar const *value)
static void
sp_feBlend_update(SPObject *object, SPCtx *ctx, guint flags)
{
- if (flags & (SP_OBJECT_MODIFIED_FLAG | SP_OBJECT_STYLE_MODIFIED_FLAG)) {
+ if (flags & SP_OBJECT_MODIFIED_FLAG) {
sp_object_read_attr(object, "mode");
+ sp_object_read_attr(object, "in2");
}
if (((SPObjectClass *) feBlend_parent_class)->update) {