From 8ec3958b0421504b4a1a51df395aea9a8a94a317 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sun, 30 Mar 2008 00:06:16 +0000 Subject: Ensure adjust drags before selection adjust selection start point. svn path=/trunk/netsurf/; revision=4061 --- desktop/selection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'desktop/selection.c') diff --git a/desktop/selection.c b/desktop/selection.c index ecfb2c187..2cc4c886c 100644 --- a/desktop/selection.c +++ b/desktop/selection.c @@ -242,7 +242,7 @@ bool selection_click(struct selection *s, browser_mouse_state mouse, unsigned id return false; /* not our problem */ if (selection_defined(s)) { - if (idx >= s->start_idx) { + if (idx > s->start_idx) { if (idx < s->end_idx) pos = 0; else -- cgit v1.2.3