From 755e45028d09e161a53a164ba4aafd0507ff0d73 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Sat, 30 Oct 2010 10:43:14 +0000 Subject: If a drag is in progress that the tree can't handle, it is a TREE_UNKNOWN_DRAG not a TREE_NO_DRAG, as the platform code might be able to deal with it. svn path=/trunk/netsurf/; revision=10920 --- desktop/tree.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'desktop/tree.h') diff --git a/desktop/tree.h b/desktop/tree.h index 30d142005..aaf82af83 100644 --- a/desktop/tree.h +++ b/desktop/tree.h @@ -66,7 +66,8 @@ struct node_element; typedef enum { TREE_NO_DRAG = 0, TREE_SELECT_DRAG, - TREE_MOVE_DRAG + TREE_MOVE_DRAG, + TREE_UNKNOWN_DRAG /** < A drag the tree itself won't handle */ } tree_drag_type; typedef enum { -- cgit v1.2.3