[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [55630] trunk/blender/source/blender/ editors/space_sequencer/sequencer_edit.c: Sequencer

Ton Roosendaal ton at blender.org
Wed Mar 27 19:31:19 CET 2013


Revision: 55630
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=55630
Author:   ton
Date:     2013-03-27 18:31:18 +0000 (Wed, 27 Mar 2013)
Log Message:
-----------
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. 

Modified Paths:
--------------
    trunk/blender/source/blender/editors/space_sequencer/sequencer_edit.c

Modified: trunk/blender/source/blender/editors/space_sequencer/sequencer_edit.c
===================================================================
--- trunk/blender/source/blender/editors/space_sequencer/sequencer_edit.c	2013-03-27 18:28:25 UTC (rev 55629)
+++ trunk/blender/source/blender/editors/space_sequencer/sequencer_edit.c	2013-03-27 18:31:18 UTC (rev 55630)
@@ -1036,7 +1036,7 @@
 	/* 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 @@
 	/* 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;




More information about the Bf-blender-cvs mailing list