[Bf-blender-cvs] [22161b64512] blender-v2.91-release: Cleanup: Fix incorrect RNA property label/tooltip re active NLA track.

Bastien Montagne noreply at git.blender.org
Tue Nov 17 17:39:16 CET 2020


Commit: 22161b645127b163d7267d2ab95df1d46feffaf7
Author: Bastien Montagne
Date:   Tue Nov 17 17:37:41 2020 +0100
Branches: blender-v2.91-release
https://developer.blender.org/rB22161b645127b163d7267d2ab95df1d46feffaf7

Cleanup: Fix incorrect RNA property label/tooltip re active NLA track.

The joys of copy/paste again.

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

M	source/blender/makesrna/intern/rna_animation.c

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

diff --git a/source/blender/makesrna/intern/rna_animation.c b/source/blender/makesrna/intern/rna_animation.c
index a50d27a726b..0a9f2ff4819 100644
--- a/source/blender/makesrna/intern/rna_animation.c
+++ b/source/blender/makesrna/intern/rna_animation.c
@@ -1160,7 +1160,7 @@ static void rna_api_animdata_nla_tracks(BlenderRNA *brna, PropertyRNA *cprop)
   RNA_def_property_pointer_funcs(
       prop, "rna_NlaTrack_active_get", "rna_NlaTrack_active_set", NULL, NULL);
   RNA_def_property_flag(prop, PROP_EDITABLE);
-  RNA_def_property_ui_text(prop, "Active Constraint", "Active Object constraint");
+  RNA_def_property_ui_text(prop, "Active Track", "Active NLA Track");
   /* XXX: should (but doesn't) update the active track in the NLA window */
   RNA_def_property_update(prop, NC_ANIMATION | ND_NLA | NA_SELECTED, NULL);
 }



More information about the Bf-blender-cvs mailing list