Fix T45048: wrong tooltips in Video Sequence Editor's "Strip" Menu (mute/unmute).

This commit is contained in:
Bastien Montagne 2015-06-12 14:04:07 +02:00
parent 6c44265bc9
commit f2bd6d73e6
Notes: blender-bot 2023-02-14 09:38:57 +01:00
Referenced by issue #45048, wrong tooltips in Video Sequence Editor's "Strip" Menu
1 changed files with 3 additions and 3 deletions

View File

@ -1738,7 +1738,7 @@ void SEQUENCER_OT_mute(struct wmOperatorType *ot)
/* identifiers */
ot->name = "Mute Strips";
ot->idname = "SEQUENCER_OT_mute";
ot->description = "Mute selected strips";
ot->description = "Mute (un)selected strips";
/* api callbacks */
ot->exec = sequencer_mute_exec;
@ -1789,7 +1789,7 @@ void SEQUENCER_OT_unmute(struct wmOperatorType *ot)
/* identifiers */
ot->name = "Un-Mute Strips";
ot->idname = "SEQUENCER_OT_unmute";
ot->description = "Un-Mute unselected rather than selected strips";
ot->description = "Unmute (un)selected strips";
/* api callbacks */
ot->exec = sequencer_unmute_exec;
@ -1798,7 +1798,7 @@ void SEQUENCER_OT_unmute(struct wmOperatorType *ot)
/* flags */
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
RNA_def_boolean(ot->srna, "unselected", 0, "Unselected", "UnMute unselected rather than selected strips");
RNA_def_boolean(ot->srna, "unselected", 0, "Unselected", "Unmute unselected rather than selected strips");
}