From f63b03099c4a2109b57f39299896301da51e12b1 Mon Sep 17 00:00:00 2001 From: kazer_ Date: Sun, 16 Dec 2007 22:30:29 +0000 Subject: [PATCH] Changed radius of point selection to ease use of navit on OpenMoko git-svn-id: https://navit.svn.sourceforge.net/svnroot/navit/trunk@638 ffa7fe5e-494d-0410-b361-a75ebd5db220 --- navit/src/navit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/navit/src/navit.c b/navit/src/navit.c index 9e0fa46..471398a 100644 --- a/navit/src/navit.c +++ b/navit/src/navit.c @@ -240,7 +240,7 @@ navit_motion(void *data, struct point *p) if (this_->button_pressed && !this_->popped) { dx=(p->x-this_->pressed.x); dy=(p->y-this_->pressed.y); - if (dx < -4 || dx > 4 || dy < -4 || dy > 4) { + if (dx < -8 || dx > 8 || dy < -8 || dy > 8) { if (this_->button_timeout) { g_source_remove(this_->button_timeout); this_->button_timeout=0; -- 2.7.4