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
path: root/source
diff options
context:
space:
mode:
authorMatt Ebb <matt@mke3.net>2006-10-11 05:19:14 +0400
committerMatt Ebb <matt@mke3.net>2006-10-11 05:19:14 +0400
commitee831a341165dacd51e330df55990e2b2d36b2f8 (patch)
tree978d424f91bef89b6f7a760045a02ed0b7053008 /source
parentb6b5cdefa954592f18931425b89d7a60a3810251 (diff)
* Allow Shift O proportional hotkey to cycle to random mode in 3D view,
looks like I only got the image editor in previous commit.
Diffstat (limited to 'source')
-rw-r--r--source/blender/src/space.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/space.c b/source/blender/src/space.c
index dd70ef4d74a..ddcc5c83361 100644
--- a/source/blender/src/space.c
+++ b/source/blender/src/space.c
@@ -1662,7 +1662,7 @@ static void winqreadview3dspace(ScrArea *sa, void *spacedata, BWinEvent *evt)
case OKEY:
if (G.obedit) {
if (G.qual==LR_SHIFTKEY) {
- G.scene->prop_mode = (G.scene->prop_mode+1)%6;
+ G.scene->prop_mode = (G.scene->prop_mode+1)%7;
allqueue(REDRAWHEADERS, 0);
}
else if((G.qual==LR_ALTKEY)) {