Fix T62491: Wrong tooltip for lock/unlock strips

This commit is contained in:
2019-03-13 08:48:55 +11:00
parent ebcea5b9f5
commit e0dd4f464f

View File

@@ -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;