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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2008-04-26 00:52:40 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2008-04-26 00:52:40 +0400
commit19985ae918759780d3cf607a87b9fd110be518a0 (patch)
treef16044f0d7c10271a22de15ca314e2c4a8d13361 /source
parentbc18e9e2908cad1d416c101f9aa07c29fdaed7c0 (diff)
Fix for bug #9664: switching to particle edit mode with ctrl+shift+tab
from paint modes didn't work correct.
Diffstat (limited to 'source')
-rw-r--r--source/blender/src/toets.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/src/toets.c b/source/blender/src/toets.c
index d3db729cf2b..a71be6bc425 100644
--- a/source/blender/src/toets.c
+++ b/source/blender/src/toets.c
@@ -742,6 +742,8 @@ int blenderqread(unsigned short event, short val)
}
}
else if(G.qual&LR_CTRLKEY && G.qual&LR_SHIFTKEY){
+ if(!(G.f & G_PARTICLEEDIT))
+ exit_paint_modes();
PE_set_particle_edit();
}
break;