renderer: fixed shadowed property

Fixes issue where waveforms would only appear on one track
This commit is contained in:
itsmattkc
2020-11-29 10:20:10 +11:00
parent 90edc4f933
commit 720acb8f77
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -237,7 +237,7 @@ NodeValueTable RenderProcessor::GenerateBlockTable(const TrackOutput *track, con
NodeValueTable::Merge({merged_table, table});
}
if (ticket_->property("waveforms").toBool()) {
if (ticket_->property("enablewaveforms").toBool()) {
// Generate a visual waveform and send it back to the main thread
AudioVisualWaveform visual_waveform;
visual_waveform.set_channel_count(audio_params.channel_count());