UI: String tweak for "UnLock" and Un-Mute in VSE

This commit is contained in:
Pablo Vazquez 2018-11-22 02:02:03 +01:00
parent 644e66caca
commit fb8aa611d0
2 changed files with 3 additions and 3 deletions

@ -483,7 +483,7 @@ class SEQUENCER_MT_strip_lock_mute(Menu):
layout.operator("sequencer.mute").unselected = False
layout.operator("sequencer.unmute").unselected = False
layout.operator("sequencer.mute", text="Mute Deselected Strips").unselected = True
layout.operator("sequencer.mute", text="Mute Unselected Strips").unselected = True
class SEQUENCER_MT_strip(Menu):

@ -1789,7 +1789,7 @@ static int sequencer_unmute_exec(bContext *C, wmOperator *op)
void SEQUENCER_OT_unmute(struct wmOperatorType *ot)
{
/* identifiers */
ot->name = "Un-Mute Strips";
ot->name = "Unmute Strips";
ot->idname = "SEQUENCER_OT_unmute";
ot->description = "Unmute (un)selected strips";
@ -1858,7 +1858,7 @@ static int sequencer_unlock_exec(bContext *C, wmOperator *UNUSED(op))
void SEQUENCER_OT_unlock(struct wmOperatorType *ot)
{
/* identifiers */
ot->name = "UnLock Strips";
ot->name = "Unlock Strips";
ot->idname = "SEQUENCER_OT_unlock";
ot->description = "Unlock the active strip so that it can't be transformed";