diff options
| author | Liam P. White <inkscapebronyat-signgmaildotcom> | 2014-03-29 19:28:44 +0000 |
|---|---|---|
| committer | Liam P. White <inkscapebronyat-signgmaildotcom> | 2014-03-29 19:28:44 +0000 |
| commit | 8a082e274bc322596c217bbe7770904a3cb50cc2 (patch) | |
| tree | f4910f4b21f6072c299299a8b37cee02726b5c30 /src/live_effects/lpe-taperstroke.cpp | |
| parent | Update to trunk (diff) | |
| download | inkscape-8a082e274bc322596c217bbe7770904a3cb50cc2.tar.gz inkscape-8a082e274bc322596c217bbe7770904a3cb50cc2.zip | |
Fix build errors and a few small bugs
(bzr r13090.1.36)
Diffstat (limited to 'src/live_effects/lpe-taperstroke.cpp')
| -rwxr-xr-x[-rw-r--r--] | src/live_effects/lpe-taperstroke.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/live_effects/lpe-taperstroke.cpp b/src/live_effects/lpe-taperstroke.cpp index 8e6edfa2f..0e9752d31 100644..100755 --- a/src/live_effects/lpe-taperstroke.cpp +++ b/src/live_effects/lpe-taperstroke.cpp @@ -279,10 +279,10 @@ Geom::PathVector LPETaperStroke::doEffect_path(Geom::PathVector const& path_in) //don't let it be integer if (double(unsigned(attach_start)) == attach_start) { - attach_start.param_set_value(attach_start - 0.00000001); + attach_start.param_set_value(attach_start - 0.00001); } if (double(unsigned(attach_end)) == attach_end) { - attach_end.param_set_value(attach_end - 0.00000001); + attach_end.param_set_value(attach_end - 0.00001); } unsigned allowed_start = first_cusp.size(); |
