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:
authorJoshua Leung <aligorith@gmail.com>2013-10-22 15:12:37 +0400
committerJoshua Leung <aligorith@gmail.com>2013-10-22 15:12:37 +0400
commit4dc9c9639f78c29b4a33fece5bef989cb1281c8b (patch)
tree55ea35c81a54030edda6824b0da5f937b0022eba /source/blender/editors/space_graph/graph_select.c
parentd2fe7c38dd30b0cfdfbc25e61a1a699b3112a704 (diff)
Ctrl+Alt+SelectMouse now does "Select all keyframes in same channel" in
DopeSheet too Previously, it only worked in the Graph Editor, though I thought I had implemented it here too.
Diffstat (limited to 'source/blender/editors/space_graph/graph_select.c')
-rw-r--r--source/blender/editors/space_graph/graph_select.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/space_graph/graph_select.c b/source/blender/editors/space_graph/graph_select.c
index d87bd9a5077..4bb5e1b11d4 100644
--- a/source/blender/editors/space_graph/graph_select.c
+++ b/source/blender/editors/space_graph/graph_select.c
@@ -1365,7 +1365,8 @@ void GRAPH_OT_clickselect(wmOperatorType *ot)
ot->flag = OPTYPE_UNDO;
/* properties */
- prop = RNA_def_boolean(ot->srna, "extend", 0, "Extend Select", ""); // SHIFTKEY
+ prop = RNA_def_boolean(ot->srna, "extend", 0, "Extend Select",
+ "Toggle keyframe selection instead of leaving newly selected keyframes only"); // SHIFTKEY
RNA_def_property_flag(prop, PROP_SKIP_SAVE);
prop = RNA_def_boolean(ot->srna, "column", 0, "Column Select",