diff options
| author | jtx <javier.arraiza@marker.es> | 2015-09-08 16:37:44 +0000 |
|---|---|---|
| committer | jtx <javier.arraiza@marker.es> | 2015-09-08 16:37:44 +0000 |
| commit | 15b9bd1a8987237146b229f6d837d6327f22da19 (patch) | |
| tree | 2a3e9ef7e4babe638308bc6b34260db1e82385b5 /src | |
| parent | for a zero sbasis, set the size to 1. (Bug 1478168) (diff) | |
| download | inkscape-15b9bd1a8987237146b229f6d837d6327f22da19.tar.gz inkscape-15b9bd1a8987237146b229f6d837d6327f22da19.zip | |
fixes bug:1492704 in bspline
Fixed bugs:
- https://launchpad.net/bugs/1492704
(bzr r14347)
Diffstat (limited to 'src')
| -rw-r--r-- | src/live_effects/lpe-bspline.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/live_effects/lpe-bspline.cpp b/src/live_effects/lpe-bspline.cpp index b17caa0f6..b77de5cb1 100644 --- a/src/live_effects/lpe-bspline.cpp +++ b/src/live_effects/lpe-bspline.cpp @@ -140,7 +140,7 @@ Gtk::Widget *LPEBSpline::newWidget() void LPEBSpline::toDefaultWeight() { - changeWeight(DEFAULT_START_POWER); + changeWeight(DEFAULT_START_POWER * 100); } void LPEBSpline::toMakeCusp() |
