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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-01-03 16:20:43 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-01-03 17:19:32 +0300
commitba1cae5a04d429e2f4e58d5fd1e740c70462620a (patch)
treea3299b49718e2cd74f412807fb97156a77d98efa /source/blender/editors/space_view3d/view3d_gizmo_empty.c
parenta2d24345bfead8e4279a818a67d73d42d2565b96 (diff)
Fix some inconsistencies in object visibility/selectability tests.
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 24236ac2e6c..b0eb9993576 100644
--- a/source/blender/editors/space_view3d/view3d_gizmo_empty.c
+++ b/source/blender/editors/space_view3d/view3d_gizmo_empty.c
@@ -120,7 +120,7 @@ static bool WIDGETGROUP_empty_image_poll(const bContext *C, wmGizmoGroupType *UN
ViewLayer *view_layer = CTX_data_view_layer(C);
Base *base = BASACT(view_layer);
- if (base && BASE_VISIBLE(v3d, base) && BASE_SELECTABLE(v3d, base)) {
+ if (base && BASE_SELECTABLE(v3d, base)) {
Object *ob = base->object;
if (ob->type == OB_EMPTY) {
if (ob->empty_drawtype == OB_EMPTY_IMAGE) {