[Bf-blender-cvs] [32314e2d4e2] master: UI: Change name of Sequencer option from 'Draw Waveform' to 'Display Waveform' to fit the naming conventions described in T56648.

William Reynish noreply at git.blender.org
Wed Feb 20 15:30:43 CET 2019


Commit: 32314e2d4e2702a5713077392bee40e379560746
Author: William Reynish
Date:   Wed Feb 20 14:04:03 2019 +0100
Branches: master
https://developer.blender.org/rB32314e2d4e2702a5713077392bee40e379560746

UI: Change name of Sequencer option from 'Draw Waveform' to 'Display Waveform' to fit the naming conventions described in T56648.

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

M	source/blender/makesrna/intern/rna_sequencer.c

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

diff --git a/source/blender/makesrna/intern/rna_sequencer.c b/source/blender/makesrna/intern/rna_sequencer.c
index fa0cb5bbaed..c01f59582d1 100644
--- a/source/blender/makesrna/intern/rna_sequencer.c
+++ b/source/blender/makesrna/intern/rna_sequencer.c
@@ -2154,7 +2154,7 @@ static void rna_def_sound(BlenderRNA *brna)
 
 	prop = RNA_def_property(srna, "show_waveform", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", SEQ_AUDIO_DRAW_WAVEFORM);
-	RNA_def_property_ui_text(prop, "Draw Waveform", "Whether to draw the sound's waveform");
+	RNA_def_property_ui_text(prop, "Display Waveform", "Display the audio waveform inside the clip");
 	RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, NULL);
 
 	rna_def_input(srna);



More information about the Bf-blender-cvs mailing list