diff options
Diffstat (limited to 'src/guide-snapper.cpp')
| -rw-r--r-- | src/guide-snapper.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/guide-snapper.cpp b/src/guide-snapper.cpp index 9fd13705c..1e4eb02d8 100644 --- a/src/guide-snapper.cpp +++ b/src/guide-snapper.cpp @@ -26,7 +26,7 @@ Inkscape::GuideSnapper::LineList Inkscape::GuideSnapper::_getSnapLines(NR::Point { LineList s; - if ( NULL == _named_view || willSnapSomething() == false) { + if ( NULL == _named_view || ThisSnapperMightSnap() == false) { return s; } @@ -47,7 +47,7 @@ Inkscape::GuideSnapper::LineList Inkscape::GuideSnapper::_getSnapLines(NR::Point /** * \return true if this Snapper will snap at least one kind of point. */ -bool Inkscape::GuideSnapper::willSnapSomething() const +bool Inkscape::GuideSnapper::ThisSnapperMightSnap() const { return _named_view == NULL ? false : (_enabled && _snap_to != 0 && _named_view->showguides); } |
