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:
authorMatt Ebb <matt@mke3.net>2009-12-17 07:55:15 +0300
committerMatt Ebb <matt@mke3.net>2009-12-17 07:55:15 +0300
commitfac65a3f4d1645fb59ed0b023247535b4b1d6d77 (patch)
treee51a5957876cd1a8fcc7fddf9037b481c764af75 /source/blender/makesrna/intern/rna_action.c
parentfd18f555103efe8ac148ab763965d5595632da3d (diff)
Durian request:
Extend the 'only selected' property in the graph editor to only show curves from selected sequence strips and nodes as well.
Diffstat (limited to 'source/blender/makesrna/intern/rna_action.c')
-rw-r--r--source/blender/makesrna/intern/rna_action.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_action.c b/source/blender/makesrna/intern/rna_action.c
index 0568652488d..4cb7080f05e 100644
--- a/source/blender/makesrna/intern/rna_action.c
+++ b/source/blender/makesrna/intern/rna_action.c
@@ -56,7 +56,7 @@ static void rna_def_dopesheet(BlenderRNA *brna)
prop= RNA_def_property(srna, "only_selected", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_sdna(prop, NULL, "filterflag", ADS_FILTER_ONLYSEL);
- RNA_def_property_ui_text(prop, "Only Selected", "Only include channels relating to selected Objects.");
+ RNA_def_property_ui_text(prop, "Only Selected", "Only include channels relating to selected objects and data.");
RNA_def_property_ui_icon(prop, ICON_RESTRICT_SELECT_OFF, 0);
RNA_def_property_update(prop, NC_ANIMATION|ND_ANIMCHAN_EDIT, NULL);