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:
authorChris Burt <desoto@exenex.com>2005-07-22 07:25:29 +0400
committerChris Burt <desoto@exenex.com>2005-07-22 07:25:29 +0400
commit438b5a673334251b57fa785a8a75a97ca3746a4f (patch)
tree61137eaabcf29238941eb9b434e966755c271e2d /source/blender/src/space.c
parent451161c29e1cd30fad15357a52cf8a2039730108 (diff)
Fix for bug #2766: Shear shortcut broken
The problem is that the shear shortcut that was originally chosen was eaten up by the shortcut to switch to the scale blezmo. Changed the shortcut to CTRL + ALT + SHIFT + S which is painful but seeing as how shear in object mode has limited use, I don't think it will cause any real problems. I also updated the menu entry to match. This was assigned to Martin but he's busy so I did it... and if I did it wrong... blame him for not fixing it sooner ;)
Diffstat (limited to 'source/blender/src/space.c')
-rw-r--r--source/blender/src/space.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/source/blender/src/space.c b/source/blender/src/space.c
index e3ae5906841..72636f38ed1 100644
--- a/source/blender/src/space.c
+++ b/source/blender/src/space.c
@@ -1561,10 +1561,6 @@ static void winqreadview3dspace(ScrArea *sa, void *spacedata, BWinEvent *evt)
initTransform(TFM_SHEAR, CTX_NONE);
Transform();
}
- else if(G.qual==(LR_CTRLKEY|LR_ALTKEY)) {
- initTransform(TFM_SHEAR, CTX_NONE);
- Transform();
- }
else if(G.qual==LR_SHIFTKEY)
snapmenu();
else if(G.qual==0) {
@@ -1593,7 +1589,7 @@ static void winqreadview3dspace(ScrArea *sa, void *spacedata, BWinEvent *evt)
initTransform(TFM_TOSPHERE, CTX_NONE);
Transform();
}
- else if(G.qual==(LR_CTRLKEY|LR_ALTKEY)) {
+ else if(G.qual==(LR_CTRLKEY|LR_ALTKEY|LR_SHIFTKEY)) {
initTransform(TFM_SHEAR, CTX_NONE);
Transform();
}