[Bf-blender-cvs] [e0dd4f464fc] master: Fix T62491: Wrong tooltip for lock/unlock strips

Campbell Barton noreply at git.blender.org
Tue Mar 12 22:54:30 CET 2019


Commit: e0dd4f464fc94c1dda646bfe48fedcc47ab670cc
Author: Campbell Barton
Date:   Wed Mar 13 08:48:55 2019 +1100
Branches: master
https://developer.blender.org/rBe0dd4f464fc94c1dda646bfe48fedcc47ab670cc

Fix T62491: Wrong tooltip for lock/unlock strips

===================================================================

M	source/blender/editors/space_sequencer/sequencer_edit.c

===================================================================

diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c
index 3c6e2abee12..6e4ffd39edc 100644
--- a/source/blender/editors/space_sequencer/sequencer_edit.c
+++ b/source/blender/editors/space_sequencer/sequencer_edit.c
@@ -1817,7 +1817,7 @@ void SEQUENCER_OT_lock(struct wmOperatorType *ot)
 	/* identifiers */
 	ot->name = "Lock Strips";
 	ot->idname = "SEQUENCER_OT_lock";
-	ot->description = "Lock the active strip so that it can't be transformed";
+	ot->description = "Lock strips so they can't be transformed";
 
 	/* api callbacks */
 	ot->exec = sequencer_lock_exec;
@@ -1850,7 +1850,7 @@ void SEQUENCER_OT_unlock(struct wmOperatorType *ot)
 	/* identifiers */
 	ot->name = "Unlock Strips";
 	ot->idname = "SEQUENCER_OT_unlock";
-	ot->description = "Unlock the active strip so that it can't be transformed";
+	ot->description = "Unlock strips so they can be transformed";
 
 	/* api callbacks */
 	ot->exec = sequencer_unlock_exec;



More information about the Bf-blender-cvs mailing list