[Bf-blender-cvs] [f2bd6d7] master: Fix T45048: wrong tooltips in Video Sequence Editor's "Strip" Menu (mute/unmute).

Bastien Montagne noreply at git.blender.org
Fri Jun 12 14:06:21 CEST 2015


Commit: f2bd6d73e6ecd190ef7986855e4e48bf2f8dcf19
Author: Bastien Montagne
Date:   Fri Jun 12 14:04:07 2015 +0200
Branches: master
https://developer.blender.org/rBf2bd6d73e6ecd190ef7986855e4e48bf2f8dcf19

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

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

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 8d5f1ea..dc212e5 100644
--- a/source/blender/editors/space_sequencer/sequencer_edit.c
+++ b/source/blender/editors/space_sequencer/sequencer_edit.c
@@ -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");
 }




More information about the Bf-blender-cvs mailing list