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>2006-11-30 00:59:19 +0300
committerTon Roosendaal <ton@blender.org>2006-11-30 00:59:19 +0300
commite82f7818fcda9e26852c85bf93ebed7789915ce2 (patch)
tree0d3a2e893b72a9ec6084da370a0d4031e7134ba7 /source/blender/src/butspace.c
parent5a3959e54b7a08ee852e5e65d46fe6ea2e37d342 (diff)
Two-in-one commit:
- Proxy Armature: armature layer (visible bones) is now saved in proxy, so on file reload the layer settings are restored - bugreport: disabling subsurf (for view) didn't change the total amounts in header.
Diffstat (limited to 'source/blender/src/butspace.c')
-rw-r--r--source/blender/src/butspace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/butspace.c b/source/blender/src/butspace.c
index 507e89b3122..cdc99f13b82 100644
--- a/source/blender/src/butspace.c
+++ b/source/blender/src/butspace.c
@@ -148,7 +148,7 @@ void test_actionpoin_but(char *name, ID **idpp)
id= G.main->action.first;
while(id) {
if( strcmp(name, id->name+2)==0 ) {
- id_lib_extern(id); /* checks lib data, sets correct flag for saving then */
+ id_us_plus(id);
*idpp= id;
return;
}