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:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-05-21 11:56:16 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-05-21 12:05:08 +0300
commit9add99f5ff0ce2741b77d8de7144fc5cf8fbefb9 (patch)
tree2fd7392c2257026800054261f275d207d4cdaa71
parent9877445ed744a0ec793a6ef61eceef48548eeb16 (diff)
Remove USE_EVAL_DATA operator flag from Python
After new dependency graph API this is no longer needed: all the access to dependency graph is done explicitly. Still leaving this flag for C, but that might also be gone in the future.
-rw-r--r--source/blender/makesrna/intern/rna_wm.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/source/blender/makesrna/intern/rna_wm.c b/source/blender/makesrna/intern/rna_wm.c
index 281135e4182..4a19dab9180 100644
--- a/source/blender/makesrna/intern/rna_wm.c
+++ b/source/blender/makesrna/intern/rna_wm.c
@@ -451,11 +451,6 @@ static const EnumPropertyItem operator_flag_items[] = {
"is enabled"},
{OPTYPE_PRESET, "PRESET", 0, "Preset", "Display a preset button with the operators settings"},
{OPTYPE_INTERNAL, "INTERNAL", 0, "Internal", "Removes the operator from search results"},
- {OPTYPE_USE_EVAL_DATA,
- "USE_EVAL_DATA",
- 0,
- "Use Evaluated Data",
- "Uses evaluated data (i.e. needs a valid depsgraph for current context)"},
{0, NULL, 0, NULL, NULL},
};
#endif