Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Reynish <billrey@me.com>2019-02-20 16:04:03 +0300
committerWilliam Reynish <billrey@me.com>2019-02-20 17:28:10 +0300
commit32314e2d4e2702a5713077392bee40e379560746 (patch)
tree63b6b7ec910117f6482da427d243137d4aa481e8 /source/blender/makesrna/intern/rna_sequencer.c
parent8a4cdda3737dd72fe1f3daa8759dce199fa87844 (diff)
UI: Change name of Sequencer option from 'Draw Waveform' to 'Display Waveform' to fit the naming conventions described in T56648.
Diffstat (limited to 'source/blender/makesrna/intern/rna_sequencer.c')
-rw-r--r--source/blender/makesrna/intern/rna_sequencer.c2
1 files changed, 1 insertions, 1 deletions
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);