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>2017-08-08 10:15:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-08-09 11:02:10 +0300
commitf0d4420cc0624da5238a317cfa3d08204c35a3dc (patch)
tree757739260facf62bba27cb125c91c69b1c415bb6 /source/blender/editors/space_view3d
parent00f22403ac9dce95117cb6ef5c948f1da881f05d (diff)
Fix spin rotate axis
Also disable lamp-target for cameras (might enable later).
Diffstat (limited to 'source/blender/editors/space_view3d')
-rw-r--r--source/blender/editors/space_view3d/view3d_manipulator_lamp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/space_view3d/view3d_manipulator_lamp.c b/source/blender/editors/space_view3d/view3d_manipulator_lamp.c
index 9e5120ad1f0..ff4b0842981 100644
--- a/source/blender/editors/space_view3d/view3d_manipulator_lamp.c
+++ b/source/blender/editors/space_view3d/view3d_manipulator_lamp.c
@@ -240,9 +240,11 @@ static bool WIDGETGROUP_lamp_target_poll(const bContext *C, wmManipulatorGroupTy
Lamp *la = ob->data;
return (ELEM(la->type, LA_SUN, LA_SPOT, LA_HEMI, LA_AREA));
}
+#if 0
else if (ob->type == OB_CAMERA) {
return true;
}
+#endif
}
return false;
}