summaryrefslogtreecommitdiffstats
path: root/src/snapper.cpp
diff options
context:
space:
mode:
authorDiederik van Lierop <mail@diedenrezi.nl>2008-11-23 13:55:26 +0000
committerdvlierop2 <dvlierop2@users.sourceforge.net>2008-11-23 13:55:26 +0000
commit6b8572be4bdae9ee79fc42c9d18fd9882dec21aa (patch)
treeccfc4f2203495ee82127b0cb596f23a9d9f48803 /src/snapper.cpp
parentUpdating the includes on these files because they need to include simple-node... (diff)
downloadinkscape-6b8572be4bdae9ee79fc42c9d18fd9882dec21aa.tar.gz
inkscape-6b8572be4bdae9ee79fc42c9d18fd9882dec21aa.zip
1) Improve the way the distance to the pointer is taken into account when finding the best snap
2) Use this distance also when snapping nodes in the path editor 3) Add a slider in the preferences dialog to control the weighing of this distance (bzr r6895)
Diffstat (limited to 'src/snapper.cpp')
-rw-r--r--src/snapper.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/snapper.cpp b/src/snapper.cpp
index 7e4568160..79f30fa3c 100644
--- a/src/snapper.cpp
+++ b/src/snapper.cpp
@@ -22,7 +22,7 @@
Inkscape::Snapper::Snapper(SnapManager const *sm, Geom::Coord const t) :
_snapmanager(sm),
_snap_enabled(true),
- _snapper_tolerance(t)
+ _snapper_tolerance(std::max(t, 1.0))
{
g_assert(_snapmanager != NULL);
}
@@ -33,7 +33,7 @@ Inkscape::Snapper::Snapper(SnapManager const *sm, Geom::Coord const t) :
*/
void Inkscape::Snapper::setSnapperTolerance(Geom::Coord const d)
{
- _snapper_tolerance = d;
+ _snapper_tolerance = std::max(d, 1.0);
}
/**