[Bf-blender-cvs] [9add99f5ff0] master: Remove USE_EVAL_DATA operator flag from Python

Sergey Sharybin noreply at git.blender.org
Tue May 21 11:06:53 CEST 2019


Commit: 9add99f5ff0ce2741b77d8de7144fc5cf8fbefb9
Author: Sergey Sharybin
Date:   Tue May 21 10:56:16 2019 +0200
Branches: master
https://developer.blender.org/rB9add99f5ff0ce2741b77d8de7144fc5cf8fbefb9

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.

===================================================================

M	source/blender/makesrna/intern/rna_wm.c

===================================================================

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



More information about the Bf-blender-cvs mailing list