summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2014-03-20 02:39:27 +0000
committerJabiertxof <jtx@jtx.marker.es>2014-03-20 02:39:27 +0000
commit1ee8c21b5cfe9efa827eed7ab5e31fe28a9b4ae1 (patch)
tree83e8515f7fcc32943ad8fe336a64ceae50bb2ca4 /src
parentRemoved persistent blue line (diff)
downloadinkscape-1ee8c21b5cfe9efa827eed7ab5e31fe28a9b4ae1.tar.gz
inkscape-1ee8c21b5cfe9efa827eed7ab5e31fe28a9b4ae1.zip
Fixed bug continuing cusp nodes
(bzr r11950.1.310)
Diffstat (limited to 'src')
-rw-r--r--src/ui/tools/pen-tool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/tools/pen-tool.cpp b/src/ui/tools/pen-tool.cpp
index 3ef9b96af..cea8e67e6 100644
--- a/src/ui/tools/pen-tool.cpp
+++ b/src/ui/tools/pen-tool.cpp
@@ -1563,7 +1563,7 @@ void PenTool::_bspline_spiro_motion(bool shift){
}else if(!this->green_curve->is_empty()){
tmpCurve = this->green_curve->copy();
}else{
- tmpCurve = this->sa->curve->copy();
+ tmpCurve = this->sc->copy();
if(this->sa->start)
tmpCurve = tmpCurve->create_reverse();
}