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:
authorTon Roosendaal <ton@blender.org>2005-10-04 21:40:22 +0400
committerTon Roosendaal <ton@blender.org>2005-10-04 21:40:22 +0400
commitecddc0739b56683601fa02b7c7bb2142a6039a7e (patch)
tree531350cbabfadca5808d5bd94cb4b3f80f414377 /source/blender/src/editview.c
parent4a0d86aac8a5eda074ad95bc92ba462152fbbf27 (diff)
Posemode, ALT+R,G,S didn't work always, this because SHIFT+mouse selecting
accidentally could unselect the object itself. It can be that older saved files still show this issue, then just select another object, and select the armature again. :)
Diffstat (limited to 'source/blender/src/editview.c')
-rw-r--r--source/blender/src/editview.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/src/editview.c b/source/blender/src/editview.c
index 5651be4bb09..7db0747e503 100644
--- a/source/blender/src/editview.c
+++ b/source/blender/src/editview.c
@@ -1295,6 +1295,9 @@ void mouse_select(void)
basact= NULL;
}
}
+ /* prevent bone selecting to pass on to object selecting */
+ if(basact==BASACT)
+ basact= NULL;
}
}
}