Treeview: API: Allow treeview fields to be flagged searchable.

This commit is contained in:
Michael Drake 2017-09-10 11:58:47 +01:00
parent 50688cde51
commit d627b930f2

View File

@ -118,7 +118,8 @@ enum treeview_field_flags {
TREE_FLAG_ALLOW_EDIT = (1 << 0), /**< Whether allow edit field */
TREE_FLAG_DEFAULT = (1 << 1), /**< Whether field is default */
TREE_FLAG_SHOW_NAME = (1 << 2), /**< Whether field name shown */
TREE_FLAG_COPY_TEXT = (1 << 3) /**< Whether to copy to clipb */
TREE_FLAG_COPY_TEXT = (1 << 3), /**< Whether to copy to clipb */
TREE_FLAG_SEARCHABLE = (1 << 4), /**< Whether field is searchable */
};