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:
authorBastien Montagne <montagne29@wanadoo.fr>2019-02-01 22:33:42 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-02-01 22:35:33 +0300
commit81fc55f563a909e4011bd4dc4c078ab292be3a17 (patch)
tree9c9dac3ee2b4f59a0fc8096208289bc62de2c2f0
parentf92b8c2613355e20f77e0570184544b844b9d759 (diff)
Fix T61010: Keying Set - Description edit box disabled, for internal use only.
Wrong property flag for that one, KeyingSet is a regular RNA class, not a registrable 'interface' one, unlike KeyingSetInfo...
-rw-r--r--source/blender/makesrna/intern/rna_animation.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_animation.c b/source/blender/makesrna/intern/rna_animation.c
index 47e366392cc..76f99443b27 100644
--- a/source/blender/makesrna/intern/rna_animation.c
+++ b/source/blender/makesrna/intern/rna_animation.c
@@ -941,7 +941,6 @@ static void rna_def_keyingset(BlenderRNA *brna)
prop = RNA_def_property(srna, "bl_description", PROP_STRING, PROP_NONE);
RNA_def_property_string_sdna(prop, NULL, "description");
RNA_def_property_string_maxlength(prop, RNA_DYN_DESCR_MAX); /* else it uses the pointer size! */
- RNA_def_property_flag(prop, PROP_REGISTER_OPTIONAL);
RNA_def_property_ui_text(prop, "Description", "A short description of the keying set");
/* KeyingSetInfo (Type Info) for Builtin Sets only */