summaryrefslogtreecommitdiffstats
path: root/src/live_effects/parameter/path.cpp
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2007-08-26 12:44:19 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2007-08-26 12:44:19 +0000
commitc54cfe33b8031d6a5ba0995395ff36580b0d021a (patch)
tree7c2c2f529ee957cf2210b8f527ab5d35f8563ae7 /src/live_effects/parameter/path.cpp
parentRename "Skeletal Strokes" LPE to "Path along path" to better describe what it... (diff)
downloadinkscape-c54cfe33b8031d6a5ba0995395ff36580b0d021a.tar.gz
inkscape-c54cfe33b8031d6a5ba0995395ff36580b0d021a.zip
2 LPE things:
* Add changed signal to LPE PathParameter * removed origin parameter from path along path as it is not necessary any more (bzr r3585)
Diffstat (limited to 'src/live_effects/parameter/path.cpp')
-rw-r--r--src/live_effects/parameter/path.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/live_effects/parameter/path.cpp b/src/live_effects/parameter/path.cpp
index f24fa933a..343a2f840 100644
--- a/src/live_effects/parameter/path.cpp
+++ b/src/live_effects/parameter/path.cpp
@@ -67,6 +67,7 @@ PathParam::param_readSVGValue(const gchar * strvalue)
newpath.concat( temppath[i].toPwSb() );
}
*( dynamic_cast<Geom::Piecewise<Geom::D2<Geom::SBasis> > *> (this) ) = newpath;
+ signal_path_changed.emit();
return true;
}