From 9add99f5ff0ce2741b77d8de7144fc5cf8fbefb9 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Tue, 21 May 2019 10:56:16 +0200 Subject: [PATCH] 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. --- source/blender/makesrna/intern/rna_wm.c | 5 ----- 1 file changed, 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