Code

- do not use shift to disable snapping while holding shift to rotate a guide
[inkscape.git] / src / snap.cpp
index 1127ccba186408b174304400dde4a576b32c1ebe..ccaf3dee3b8bb652ca835b8421467f9e8b4adf61 100644 (file)
@@ -430,8 +430,7 @@ void SnapManager::guideFreeSnap(Geom::Point &p, Geom::Point const &guide_normal,
         (*i)->freeSnap(sc, candidate, Geom::OptRect(), NULL, NULL);
     }
 
-    // Snap to intersections of curves, but not to the curves themselves! (see _snapTranslatingGuideToNodes in object-snapper.cpp)
-    Inkscape::SnappedPoint const s = findBestSnap(candidate, sc, false, true);
+    Inkscape::SnappedPoint const s = findBestSnap(candidate, sc, false, false);
 
     s.getPoint(p);
 }