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>2007-09-23 22:27:01 +0400
committerCampbell Barton <ideasman42@gmail.com>2007-09-23 22:27:01 +0400
commit0096d180b924c1f1187d723a8e79ddc1b4c83586 (patch)
tree80aca065e503ae70b15c50c5d003e4d11246b521 /source/blender/src/space.c
parentba6a09f31d3fff40d316d856795345d085d79a0f (diff)
Dof Object - set the depth of field to an object - set in the camera edit panel but the distance is calculated on the camera object only so linked cameras work.
Alt+Period - sets active pivot some tooltips didnt make much sense, edited a few.
Diffstat (limited to 'source/blender/src/space.c')
-rw-r--r--source/blender/src/space.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/src/space.c b/source/blender/src/space.c
index 71cb6f5f4fe..78b4af26d23 100644
--- a/source/blender/src/space.c
+++ b/source/blender/src/space.c
@@ -2475,7 +2475,9 @@ static void winqreadview3dspace(ScrArea *sa, void *spacedata, BWinEvent *evt)
case PERIODKEY:
if(G.qual==LR_CTRLKEY) {
G.vd->around= V3D_LOCAL;
- } else if(G.qual==0) {
+ } else if(G.qual==LR_ALTKEY) {
+ G.vd->around= V3D_ACTIVE;
+ } else if(G.qual==0) {
G.vd->around= V3D_CURSOR;
}
handle_view3d_around();