From 22161b645127b163d7267d2ab95df1d46feffaf7 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Tue, 17 Nov 2020 17:37:41 +0100 Subject: Cleanup: Fix incorrect RNA property label/tooltip re active NLA track. The joys of copy/paste again. --- source/blender/makesrna/intern/rna_animation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender') 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); } -- cgit v1.2.3