From fc2dffc4d7d9b4af457742bef47689fe425f20e4 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Tue, 23 Aug 2016 18:31:35 +0200 Subject: [PATCH] Make it clearer that the cutoff knob affects the channel lo-cut filter. --- mainwindow.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mainwindow.cpp b/mainwindow.cpp index ac59305..0837cc6 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -448,6 +448,11 @@ void MainWindow::cutoff_knob_changed(int value) snprintf(buf, sizeof(buf), "%ld Hz", lrintf(cutoff_hz)); ui->locut_cutoff_display->setText(buf); ui->locut_cutoff_display_2->setText(buf); + + for (unsigned bus_index = 0; bus_index < audio_expanded_views.size(); ++bus_index) { + audio_expanded_views[bus_index]->locut_enabled->setText( + QString("Lo-cut: ") + buf); + } } void MainWindow::report_disk_space(off_t free_bytes, double estimated_seconds_left) -- 2.39.2