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>2018-12-11 07:08:18 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-12-11 07:09:09 +0300
commitc7ec1fa5e66ef96b7ea1f1c082683c227930bae3 (patch)
treeae918690dbd5b078a23e41e9faaa5a2cf8bcef92 /source/blender/editors/space_view3d/view3d_gizmo_empty.c
parent7fe3d1e7d718561e275f21acc7261207e67bf685 (diff)
Cleanup: use BKE_object_* prefix for object API
Also minor style cleanup.
Diffstat (limited to 'source/blender/editors/space_view3d/view3d_gizmo_empty.c')
-rw-r--r--source/blender/editors/space_view3d/view3d_gizmo_empty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_view3d/view3d_gizmo_empty.c b/source/blender/editors/space_view3d/view3d_gizmo_empty.c
index 58cfeba0480..df1ae8c82e9 100644
--- a/source/blender/editors/space_view3d/view3d_gizmo_empty.c
+++ b/source/blender/editors/space_view3d/view3d_gizmo_empty.c
@@ -122,7 +122,7 @@ static bool WIDGETGROUP_empty_image_poll(const bContext *C, wmGizmoGroupType *UN
if (ob && ob->type == OB_EMPTY) {
if (ob->empty_drawtype == OB_EMPTY_IMAGE) {
- return BKE_image_empty_visible_in_view3d(ob, rv3d);
+ return BKE_object_empty_image_is_visible_in_view3d(ob, rv3d);
}
}
return false;