summaryrefslogtreecommitdiffstats
path: root/src/snap.cpp
diff options
context:
space:
mode:
authorLiam P. White <inkscapebronyat-signgmaildotcom>2014-04-06 21:38:30 +0000
committerLiam P. White <inkscapebronyat-signgmaildotcom>2014-04-06 21:38:30 +0000
commit6f10c7f675fae8c20f24f01b7cffb861f3726e9d (patch)
treea78b993f14603288e71637bb22f7a2929c8ba5bf /src/snap.cpp
parentPrevent crash on "three knot" issue (diff)
downloadinkscape-6f10c7f675fae8c20f24f01b7cffb861f3726e9d.tar.gz
inkscape-6f10c7f675fae8c20f24f01b7cffb861f3726e9d.zip
Properly allow effect stacking with knotholders (and add extra LPE functionality)
(bzr r13090.1.48)
Diffstat (limited to 'src/snap.cpp')
-rw-r--r--src/snap.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/snap.cpp b/src/snap.cpp
index ecf799cdc..c3891baea 100644
--- a/src/snap.cpp
+++ b/src/snap.cpp
@@ -116,7 +116,7 @@ void SnapManager::freeSnapReturnByRef(Geom::Point &p,
Inkscape::SnapSourceType const source_type,
Geom::OptRect const &bbox_to_snap) const
{
- Inkscape::SnappedPoint const s = freeSnap(Inkscape::SnapCandidatePoint(p, source_type), bbox_to_snap);
+ Inkscape::SnappedPoint const s = freeSnap(Inkscape::SnapCandidatePoint(p, source_type, Inkscape::SNAPTARGET_PATH), bbox_to_snap);
s.getPointIfSnapped(p);
}