diff options
| author | Jabier Arraiza Cenoz <jabier.arraiza@marker.es> | 2015-03-14 12:19:17 +0000 |
|---|---|---|
| committer | Jabiertxof <jtx@jtx.marker.es> | 2015-03-14 12:19:17 +0000 |
| commit | 6c5501612d54559bd8497e78d4f7bd8601432323 (patch) | |
| tree | d335832ff25926a0549af362f589530b4c09541e /src/live_effects/lpe-parallel.cpp | |
| parent | update to trunk (diff) | |
| parent | Partial fix for bug 1430873. Rectangles should behave properly with % values. (diff) | |
| download | inkscape-6c5501612d54559bd8497e78d4f7bd8601432323.tar.gz inkscape-6c5501612d54559bd8497e78d4f7bd8601432323.zip | |
update to trunk
(bzr r13645.1.41)
Diffstat (limited to 'src/live_effects/lpe-parallel.cpp')
| -rw-r--r-- | src/live_effects/lpe-parallel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/live_effects/lpe-parallel.cpp b/src/live_effects/lpe-parallel.cpp index a1e713fe2..aa7405607 100644 --- a/src/live_effects/lpe-parallel.cpp +++ b/src/live_effects/lpe-parallel.cpp @@ -74,7 +74,7 @@ LPEParallel::doOnApply (SPLPEItem const* lpeitem) dir = unit_vector(B - A); Geom::Point offset = (A + B)/2 + dir.ccw() * 100; offset_pt.param_update_default(offset); - offset_pt.param_set_and_write_new_value(offset); + offset_pt.param_setValue(offset, true); } Geom::Piecewise<Geom::D2<Geom::SBasis> > |
