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...
This commit is contained in:
Bastien Montagne 2019-02-01 20:33:42 +01:00
parent f92b8c2613
commit 81fc55f563
Notes: blender-bot 2023-02-14 06:54:28 +01:00
Referenced by issue #61010, Keying Set - Description edit box disabled, for internal use only
1 changed files with 0 additions and 1 deletions

View File

@ -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 */