summaryrefslogtreecommitdiffstats
path: root/src/ui/tool
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2014-05-13 05:35:50 +0000
committerJabiertxof <jtx@jtx.marker.es>2014-05-13 05:35:50 +0000
commit8dbf7bd73db6bb549b3e0be3fba91cddfcb589b8 (patch)
treeab34bee90d3d5e0efea6f076ad7d953f16f788f7 /src/ui/tool
parentUpdate to trunk (diff)
downloadinkscape-8dbf7bd73db6bb549b3e0be3fba91cddfcb589b8.tar.gz
inkscape-8dbf7bd73db6bb549b3e0be3fba91cddfcb589b8.zip
Fixed a bug in bspline with snaps and 1 sice segments. Pointed by LiamW
(bzr r13341.1.12)
Diffstat (limited to 'src/ui/tool')
-rw-r--r--src/ui/tool/node.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/tool/node.cpp b/src/ui/tool/node.cpp
index f077bcffc..ed0843b65 100644
--- a/src/ui/tool/node.cpp
+++ b/src/ui/tool/node.cpp
@@ -371,7 +371,7 @@ void Handle::dragged(Geom::Point &new_pos, GdkEventMotion *event)
std::vector<Inkscape::SnapCandidatePoint> unselected;
//if the snap adjustment is activated and it is not bspline
- if (snap && !_pm().isBSpline()) {
+ if (snap && !_pm().isBSpline(false)) {
ControlPointSelection::Set &nodes = _parent->_selection.allPoints();
for (ControlPointSelection::Set::iterator i = nodes.begin(); i != nodes.end(); ++i) {
Node *n = static_cast<Node*>(*i);