From 26cd3fd293cc39d281c737acff2196bc644d7624 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Thu, 18 Nov 2010 05:45:21 +0000 Subject: [PATCH] Bugfix #24781: Can't use rest position / pose position on linked-group proxy armatures --- source/blender/makesrna/intern/rna_armature.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/makesrna/intern/rna_armature.c b/source/blender/makesrna/intern/rna_armature.c index bfb2b73bf31..71e4f0fdfe3 100644 --- a/source/blender/makesrna/intern/rna_armature.c +++ b/source/blender/makesrna/intern/rna_armature.c @@ -785,6 +785,7 @@ static void rna_def_armature(BlenderRNA *brna) RNA_def_property_enum_items(prop, prop_pose_position_items); RNA_def_property_ui_text(prop, "Pose Position", "Show armature in binding pose or final posed state"); RNA_def_property_update(prop, 0, "rna_Armature_update_data"); + RNA_def_property_flag(prop, PROP_LIB_EXCEPTION); prop= RNA_def_property(srna, "draw_type", PROP_ENUM, PROP_NONE); RNA_def_property_enum_sdna(prop, NULL, "drawtype");