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

This commit is contained in:
William Reynish 2019-02-20 14:04:03 +01:00
parent 8a4cdda373
commit 32314e2d4e
1 changed files with 1 additions and 1 deletions

View File

@ -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);