summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorjtx <javier.arraiza@marker.es>2015-09-08 16:37:44 +0000
committerjtx <javier.arraiza@marker.es>2015-09-08 16:37:44 +0000
commit15b9bd1a8987237146b229f6d837d6327f22da19 (patch)
tree2a3e9ef7e4babe638308bc6b34260db1e82385b5 /src
parentfor a zero sbasis, set the size to 1. (Bug 1478168) (diff)
downloadinkscape-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.cpp2
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()