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:
authorCampbell Barton <ideasman42@gmail.com>2020-08-30 06:32:22 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-08-30 06:42:28 +0300
commit47908f015551fa5acf1359b3f1c0e1930856af83 (patch)
treeb3c03d4700ab7ef64a2a1aa9935137ae84cd7be8 /source/blender/editors/include/ED_screen.h
parent2778937fb6b965d4c428f87551cccb2eafd56bf1 (diff)
Operator: expose ED_operator_object_active_local_editable_ex
Support calling this function with an object argument, useful for implementing filter functions that loop over objects.
Diffstat (limited to 'source/blender/editors/include/ED_screen.h')
-rw-r--r--source/blender/editors/include/ED_screen.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/include/ED_screen.h b/source/blender/editors/include/ED_screen.h
index dd7ca5c65a4..d9c7128c2ee 100644
--- a/source/blender/editors/include/ED_screen.h
+++ b/source/blender/editors/include/ED_screen.h
@@ -344,6 +344,7 @@ bool ED_operator_console_active(struct bContext *C);
bool ED_operator_object_active(struct bContext *C);
bool ED_operator_object_active_editable_ex(struct bContext *C, const Object *ob);
bool ED_operator_object_active_editable(struct bContext *C);
+bool ED_operator_object_active_local_editable_ex(struct bContext *C, const Object *ob);
bool ED_operator_object_active_local_editable(struct bContext *C);
bool ED_operator_object_active_editable_mesh(struct bContext *C);
bool ED_operator_object_active_editable_font(struct bContext *C);