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:
authorCampbell Barton <ideasman42@gmail.com>2019-03-13 00:48:55 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-13 00:54:04 +0300
commite0dd4f464fc94c1dda646bfe48fedcc47ab670cc (patch)
tree27da8d9d5e8cec3b8211ab2a6f47315b0326bb64 /source/blender/editors/space_sequencer
parentebcea5b9f583a0c3e6dce234298f25c41e920a9b (diff)
Fix T62491: Wrong tooltip for lock/unlock strips
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 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;