diff options
| author | Jabier Arraiza Cenoz <jabier.arraiza@marker.es> | 2014-05-13 05:34:59 +0000 |
|---|---|---|
| committer | Jabiertxof <jtx@jtx.marker.es> | 2014-05-13 05:34:59 +0000 |
| commit | 2e6927e7c4ae6b8592dd9f13e8c286ea899e82db (patch) | |
| tree | 85c2d6cb055ccce256ae829c042d8062ff914814 /src/ui/tool/node.cpp | |
| parent | Fixed a bug in bspline with snaps and 1 sice segments. Pointed by LiamW (diff) | |
| parent | Patch from Jabierxto to fix a bug I reported off-tracker. (diff) | |
| download | inkscape-2e6927e7c4ae6b8592dd9f13e8c286ea899e82db.tar.gz inkscape-2e6927e7c4ae6b8592dd9f13e8c286ea899e82db.zip | |
Update to trunk
(bzr r13341.1.11)
Diffstat (limited to '')
| -rw-r--r-- | src/ui/tool/node.cpp | 2 |
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); |
