summaryrefslogtreecommitdiffstats
path: root/src/ui/tool/node.cpp
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2014-05-13 05:34:59 +0000
committerJabiertxof <jtx@jtx.marker.es>2014-05-13 05:34:59 +0000
commit2e6927e7c4ae6b8592dd9f13e8c286ea899e82db (patch)
tree85c2d6cb055ccce256ae829c042d8062ff914814 /src/ui/tool/node.cpp
parentFixed a bug in bspline with snaps and 1 sice segments. Pointed by LiamW (diff)
parentPatch from Jabierxto to fix a bug I reported off-tracker. (diff)
downloadinkscape-2e6927e7c4ae6b8592dd9f13e8c286ea899e82db.tar.gz
inkscape-2e6927e7c4ae6b8592dd9f13e8c286ea899e82db.zip
Update to trunk
(bzr r13341.1.11)
Diffstat (limited to 'src/ui/tool/node.cpp')
-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 ed0843b65..f077bcffc 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(false)) {
+ if (snap && !_pm().isBSpline()) {
ControlPointSelection::Set &nodes = _parent->_selection.allPoints();
for (ControlPointSelection::Set::iterator i = nodes.begin(); i != nodes.end(); ++i) {
Node *n = static_cast<Node*>(*i);