[Bf-blender-cvs] [399ac1ff113] master: Fix subtype & default for keying set operator properties

Campbell Barton noreply at git.blender.org
Wed Mar 9 03:23:19 CET 2022


Commit: 399ac1ff113e20688f277157ccb3c671648c9b1c
Author: Campbell Barton
Date:   Wed Mar 9 13:19:33 2022 +1100
Branches: master
https://developer.blender.org/rB399ac1ff113e20688f277157ccb3c671648c9b1c

Fix subtype & default for keying set operator properties

Error in 1a12c9edab4ac89c8a87c20ad3a2195d0e681bc8,
also correct descriptions.

===================================================================

M	source/blender/editors/animation/keyframing.c

===================================================================

diff --git a/source/blender/editors/animation/keyframing.c b/source/blender/editors/animation/keyframing.c
index a4845de7d7d..25b1ccecf2e 100644
--- a/source/blender/editors/animation/keyframing.c
+++ b/source/blender/editors/animation/keyframing.c
@@ -1957,7 +1957,8 @@ void ANIM_OT_keyframe_insert_by_name(wmOperatorType *ot)
   ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
 
   /* keyingset to use (idname) */
-  prop = RNA_def_string_file_path(ot->srna, "type", "Type", MAX_ID_NAME - 2, "", "");
+  prop = RNA_def_string(
+      ot->srna, "type", "", MAX_ID_NAME - 2, "Keying Set", "The Keying Set to use");
   RNA_def_property_flag(prop, PROP_HIDDEN);
   ot->prop = prop;
 }
@@ -2117,7 +2118,8 @@ void ANIM_OT_keyframe_delete_by_name(wmOperatorType *ot)
   ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
 
   /* keyingset to use (idname) */
-  prop = RNA_def_string_file_path(ot->srna, "type", "Type", MAX_ID_NAME - 2, "", "");
+  prop = RNA_def_string(
+      ot->srna, "type", "", MAX_ID_NAME - 2, "Keying Set", "The Keying Set to use");
   RNA_def_property_flag(prop, PROP_HIDDEN);
   ot->prop = prop;
 }



More information about the Bf-blender-cvs mailing list