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:
authorCampbell Barton <ideasman42@gmail.com>2006-06-27 09:56:56 +0400
committerCampbell Barton <ideasman42@gmail.com>2006-06-27 09:56:56 +0400
commit2501386f2b149d30e2ffb56a57d3cd801b0c431a (patch)
tree3050e5e95a5109ba2b9dd316c3530043f03a9f40 /source/blender/src/editlattice.c
parente0aa1dd29571229c995a2abd5b56782e8a5fbbae (diff)
Posemode was missing a "countall" call with pose mode select/deselect all. while adding this I noticed that lattice and metaballs were also missing countall() calls.
Added countall to metaball select, undo, duplicate (all the obvious places) - but its possible coultall() could be added to other functions especialy for metaballs.
Diffstat (limited to 'source/blender/src/editlattice.c')
-rw-r--r--source/blender/src/editlattice.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/src/editlattice.c b/source/blender/src/editlattice.c
index ab2d5a20c9b..244b035db15 100644
--- a/source/blender/src/editlattice.c
+++ b/source/blender/src/editlattice.c
@@ -200,6 +200,7 @@ void deselectall_Latt(void)
if(bp->hide==0) {
if(bp->f1) {
setflagsLatt(0);
+ countall();
BIF_undo_push("(De)select all");
return;
}
@@ -207,7 +208,7 @@ void deselectall_Latt(void)
bp++;
}
setflagsLatt(1);
-
+ countall();
BIF_undo_push("(De)select all");
}