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:
authorJoseph Eagar <joeedh@gmail.com>2007-02-10 22:07:47 +0300
committerJoseph Eagar <joeedh@gmail.com>2007-02-10 22:07:47 +0300
commitfd05f23dce6f0a1d9bb0be18ec6cb9787accd9d3 (patch)
treecca4e8179de56b731901075fc0f913d600703300 /source/blender/include/BIF_editarmature.h
parent8e837d6f8676de5f08c64f21402b799055ac4942 (diff)
=Armature Undo Fix=
Armature undo was incomplete; no less then 6 places needed undo pushes. Added undo pushes, and made sure deselectall_armature/posearmature played nice and only did undo pushes when they're called with AKEY. This seems like a fairly old issue. I guess people just didn't notice it enough to file a bug report. :)
Diffstat (limited to 'source/blender/include/BIF_editarmature.h')
-rw-r--r--source/blender/include/BIF_editarmature.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/include/BIF_editarmature.h b/source/blender/include/BIF_editarmature.h
index a48ca3bbe82..1bf40393e5f 100644
--- a/source/blender/include/BIF_editarmature.h
+++ b/source/blender/include/BIF_editarmature.h
@@ -81,8 +81,8 @@ void docentre_armature (struct Object *ob, int centremode);
void clear_armature(struct Object *ob, char mode);
void delete_armature(void);
-void deselectall_armature(int toggle);
-void deselectall_posearmature (struct Object *ob, int test);
+void deselectall_armature(int toggle, int doundo);
+void deselectall_posearmature (struct Object *ob, int test, int doundo);
int draw_armature(struct Base *base, int dt);
void extrude_armature(int forked);
void subdivide_armature(void);