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:
Diffstat (limited to 'source/blender/src/editobject.c')
-rw-r--r--source/blender/src/editobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/editobject.c b/source/blender/src/editobject.c
index 93821bc2c09..a38a6b44f5a 100644
--- a/source/blender/src/editobject.c
+++ b/source/blender/src/editobject.c
@@ -1130,7 +1130,7 @@ void make_parent(void)
bFollowPathConstraint *data;
mode= pupmenu("Make Parent %t|Normal Parent %x1|Follow Path %x2|Curve Deform %x3");
- if(mode==0){
+ if(mode<=0){
return;
}
else if(mode==1) {
@@ -1228,7 +1228,7 @@ void make_parent(void)
return;
}
}
- else {
+ else {
if(qual & LR_SHIFTKEY) {
if(okee("Make parent without inverse")==0) return;
}