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:
authorTon Roosendaal <ton@blender.org>2013-03-27 22:31:18 +0400
committerTon Roosendaal <ton@blender.org>2013-03-27 22:31:18 +0400
commit9c73c910395e8dd057a134dc3a68b7f78656d00b (patch)
treec328b65d2782ba58b22b65acb21f4c4354815b08 /source/blender/editors/space_sequencer
parentb163256b33605bd27616caefe63de7cca53c9439 (diff)
Sequencer
"Insert Gap" and "Remove Gap" tooltip fix - to denote this doesn't use selection. The use of this tool is to insert or remove time for a timeline.
Diffstat (limited to 'source/blender/editors/space_sequencer')
-rw-r--r--source/blender/editors/space_sequencer/sequencer_edit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c
index d285cd6e6a4..135fddfd348 100644
--- a/source/blender/editors/space_sequencer/sequencer_edit.c
+++ b/source/blender/editors/space_sequencer/sequencer_edit.c
@@ -1036,7 +1036,7 @@ void SEQUENCER_OT_gap_remove(struct wmOperatorType *ot)
/* identifiers */
ot->name = "Remove Gaps";
ot->idname = "SEQUENCER_OT_gap_remove";
- ot->description = "Remove gap at current frame to first strip at the right";
+ ot->description = "Remove gap at current frame to first strip at the right, independent of selection or locked state of strips";
/* api callbacks */
// ot->invoke = sequencer_snap_invoke;
@@ -1067,7 +1067,7 @@ void SEQUENCER_OT_gap_insert(struct wmOperatorType *ot)
/* identifiers */
ot->name = "Insert Gaps";
ot->idname = "SEQUENCER_OT_gap_insert";
- ot->description = "Insert gap at current frame to first strips at the right";
+ ot->description = "Insert gap at current frame to first strips at the right, independent of selection or locked state of strips";
/* api callbacks */
// ot->invoke = sequencer_snap_invoke;