Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/blenkernel/BKE_lib_query.h')
-rw-r--r--source/blender/blenkernel/BKE_lib_query.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_lib_query.h b/source/blender/blenkernel/BKE_lib_query.h
index d47ba2497d4..35c42e62810 100644
--- a/source/blender/blenkernel/BKE_lib_query.h
+++ b/source/blender/blenkernel/BKE_lib_query.h
@@ -106,7 +106,8 @@ typedef int (*LibraryIDLinkCallback)(LibraryIDLinkCallbackData *cb_data);
enum {
IDWALK_NOP = 0,
IDWALK_READONLY = (1 << 0),
- IDWALK_RECURSE = (1 << 1), /* Also implies IDWALK_READONLY. */
+ IDWALK_RECURSE = (1 << 1), /* Also implies IDWALK_READONLY. */
+ IDWALK_INCLUDE_UI = (1 << 2), /* Include UI pointers (from WM and screens editors). */
IDWALK_NO_INDIRECT_PROXY_DATA_USAGE = (1 << 8), /* Ugly special case :(((( */
};