From f1ec842cb261fe9ea9911a58b982190ea71e16e7 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Mon, 17 Aug 2009 11:45:24 +0000 Subject: 2.5 Timeline: * Added "Only selected" Option in View menu. --- source/blender/makesrna/intern/rna_space.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source/blender/makesrna') diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c index 6ecf533e39d..664b1713b31 100644 --- a/source/blender/makesrna/intern/rna_space.c +++ b/source/blender/makesrna/intern/rna_space.c @@ -1160,6 +1160,11 @@ static void rna_def_space_time(BlenderRNA *brna) prop= RNA_def_property(srna, "continue_physics", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "redraws", TIME_CONTINUE_PHYSICS); RNA_def_property_ui_text(prop, "Continue Physics", "During playblack, continue physics simulations regardless of the frame number"); + + prop= RNA_def_property(srna, "only_selected", PROP_BOOLEAN, PROP_NONE); + RNA_def_property_boolean_sdna(prop, NULL, "flag", TIME_ONLYACTSEL); + RNA_def_property_ui_text(prop, "Only Selected channels", "Show keyframes only from active/selected channels."); + RNA_def_property_update(prop, NC_WINDOW, NULL); } static void rna_def_console_line(BlenderRNA *brna) -- cgit v1.2.3