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>2014-02-28 18:21:25 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-02-28 18:28:15 +0400
commita32588b174734a0ccf2b4d2b8ac8632f70401c7a (patch)
tree66a92525101d92bad4b0d093cdec2730615bf567 /source/blender/editors/transform/transform.h
parent6e970e1a33c2dd2b3dbe648c6d6d451595bb42ea (diff)
Fix for transform setting T_CAMERA
This was only set when the camera was active, however non active cameras can be transformed too.
Diffstat (limited to 'source/blender/editors/transform/transform.h')
-rw-r--r--source/blender/editors/transform/transform.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/transform/transform.h b/source/blender/editors/transform/transform.h
index 5cac49aff34..3f8166216ba 100644
--- a/source/blender/editors/transform/transform.h
+++ b/source/blender/editors/transform/transform.h
@@ -384,6 +384,7 @@ typedef struct TransInfo {
#define T_EDIT (1 << 1)
#define T_POSE (1 << 2)
#define T_TEXTURE (1 << 3)
+ /* transforming the camera while in camera view */
#define T_CAMERA (1 << 4)
// trans on points, having no rotation/scale
#define T_POINTS (1 << 6)