summaryrefslogtreecommitdiffstats
path: root/src/pen-context.cpp
diff options
context:
space:
mode:
authorjtx <javier.arraiza@marker.es>2013-03-20 15:15:12 +0000
committerjtx <javier.arraiza@marker.es>2013-03-20 15:15:12 +0000
commit6bdbe4b651d2a643d751803572df3e8f247a8707 (patch)
treeb04d653761d70bc92858723b3f2ecc0e8010c077 /src/pen-context.cpp
parentFixing regression (diff)
parentFor testing, widget added, regression fixed (diff)
downloadinkscape-6bdbe4b651d2a643d751803572df3e8f247a8707.tar.gz
inkscape-6bdbe4b651d2a643d751803572df3e8f247a8707.zip
Fixing node creations in BSpline mode.
(bzr r11950.4.1)
Diffstat (limited to 'src/pen-context.cpp')
-rw-r--r--src/pen-context.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pen-context.cpp b/src/pen-context.cpp
index b43c2ff19..6f61ceb99 100644
--- a/src/pen-context.cpp
+++ b/src/pen-context.cpp
@@ -1791,7 +1791,7 @@ static void bspline_spiro_build(SPPenContext *const pc)
//We create the base curve
SPCurve *curve = new SPCurve();
//If we continuate the existing curve we add it at the start
- if(pc->sa && !pc->sa->curve->is_empty() &&1>2){
+ if(pc->sa && !pc->sa->curve->is_empty()){
curve = pc->sa->curve->copy();
if (pc->sa->start) {
curve = curve->create_reverse();