summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-perspective_path.cpp
diff options
context:
space:
mode:
authorMaximilian Albert <maximilian.albert@gmail.com>2008-04-15 18:38:15 +0000
committercilix42 <cilix42@users.sourceforge.net>2008-04-15 18:38:15 +0000
commit5d06e12bc768307942b25d9a0cdd4a99c645bae8 (patch)
treee787c798046f612c913af32cbf2a744e0c3bfeeb /src/live_effects/lpe-perspective_path.cpp
parentfixed E/V keys by request from InitMass (diff)
downloadinkscape-5d06e12bc768307942b25d9a0cdd4a99c645bae8.tar.gz
inkscape-5d06e12bc768307942b25d9a0cdd4a99c645bae8.zip
Set concatenate_before_pwd2 = true in perspective path LPE so that paths don't get split into their subpaths (which gives weird results especially with text)
(bzr r5452)
Diffstat (limited to 'src/live_effects/lpe-perspective_path.cpp')
-rw-r--r--src/live_effects/lpe-perspective_path.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/live_effects/lpe-perspective_path.cpp b/src/live_effects/lpe-perspective_path.cpp
index eb05b5702..5be5970c1 100644
--- a/src/live_effects/lpe-perspective_path.cpp
+++ b/src/live_effects/lpe-perspective_path.cpp
@@ -54,6 +54,8 @@ LPEPerspectivePath::LPEPerspectivePath(LivePathEffectObject *lpeobject) :
registerParameter( dynamic_cast<Parameter *>(&offsety) );
registerParameter( dynamic_cast<Parameter *>(&uses_plane_xy) );
+ concatenate_before_pwd2 = true; // don't split the path into its subpaths
+
Persp3D *persp = persp3d_document_first_persp(inkscape_active_document());
Proj::TransfMat3x4 pmat = persp->tmat;