summaryrefslogtreecommitdiff
path: root/desktop/tree.h
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2010-10-30 10:43:14 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2010-10-30 10:43:14 +0000
commit755e45028d09e161a53a164ba4aafd0507ff0d73 (patch)
tree9d402bbe3b60752e07b9b68d7f13c9932ea01e6e /desktop/tree.h
parentf2c834ac515dc348ec142c579766e176ae379162 (diff)
downloadnetsurf-755e45028d09e161a53a164ba4aafd0507ff0d73.tar.gz
netsurf-755e45028d09e161a53a164ba4aafd0507ff0d73.tar.bz2
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
Diffstat (limited to 'desktop/tree.h')
-rw-r--r--desktop/tree.h3
1 files changed, 2 insertions, 1 deletions
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 {