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:
authorMartin Poirier <theeth@yahoo.com>2005-11-20 19:01:56 +0300
committerMartin Poirier <theeth@yahoo.com>2005-11-20 19:01:56 +0300
commit9ef8c198b24d40871ab630437fefd1fab2a97f17 (patch)
treece8195dbc50b09a1831c934ccf2e8344b5df5457 /source/blender/src/transform_constraints.c
parent874c7d7831dec01e3ffdb0f920ca89b68c9d93ea (diff)
Transform:
As discussed during meeting, made double key press go for Local when Global was selected. Two lines of code! ;)
Diffstat (limited to 'source/blender/src/transform_constraints.c')
-rwxr-xr-xsource/blender/src/transform_constraints.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/src/transform_constraints.c b/source/blender/src/transform_constraints.c
index b1e3f545a5f..274e24731e3 100755
--- a/source/blender/src/transform_constraints.c
+++ b/source/blender/src/transform_constraints.c
@@ -513,10 +513,12 @@ void setUserConstraint(TransInfo *t, int mode, const char ftext[]) {
switch(twmode) {
case V3D_MANIP_GLOBAL:
+ /*
sprintf(text, ftext, "global");
Mat3One(mtx);
setConstraint(t, mtx, mode, text);
break;
+ */
case V3D_MANIP_LOCAL:
sprintf(text, ftext, "local");
setLocalConstraint(t, mode, text);