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.
This commit is contained in:
Sergey Sharybin 2019-05-21 10:56:16 +02:00
parent 9877445ed7
commit 9add99f5ff
1 changed files with 0 additions and 5 deletions

View File

@ -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