diff options
| author | Diederik van Lierop <mail@diedenrezi.nl> | 2008-01-08 22:02:30 +0000 |
|---|---|---|
| committer | dvlierop2 <dvlierop2@users.sourceforge.net> | 2008-01-08 22:02:30 +0000 |
| commit | 2e4d6d939ca10dba36cf0ddf89e9551b8811a461 (patch) | |
| tree | cdd1577fb125c1af696870cfcccb995477cc0ffb /src/snap.cpp | |
| parent | matching brackets (diff) | |
| download | inkscape-2e4d6d939ca10dba36cf0ddf89e9551b8811a461.tar.gz inkscape-2e4d6d939ca10dba36cf0ddf89e9551b8811a461.zip | |
Fix LP #181020: When snapping a guide, now only the part of the guide near the pointer is considered
(bzr r4435)
Diffstat (limited to 'src/snap.cpp')
| -rw-r--r-- | src/snap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/snap.cpp b/src/snap.cpp index a6e165d50..3bee26f73 100644 --- a/src/snap.cpp +++ b/src/snap.cpp @@ -289,7 +289,7 @@ Inkscape::SnappedPoint SnapManager::guideSnap(NR::Point const &p, { // This method is used to snap a guide to nodes, while dragging the guide around - if (!(object.ThisSnapperMightSnap() && _snap_enabled_globally)) { + if (!(object.GuidesMightSnap() && _snap_enabled_globally)) { return Inkscape::SnappedPoint(p, NR_HUGE, 0, false); } |
