From 2495193c9101c17a665678a3718dc3a12f1513ba Mon Sep 17 00:00:00 2001 From: Nikolaus Gullotta Date: Wed, 9 Sep 2020 08:50:30 -0500 Subject: [PATCH] Fix demo noise level selection Fixes issue where the export dmeo noise level was not being applied correctly because ExportFormatDialog::update_demo_noise_selection was not being called --- gtk2_ardour/export_format_dialog.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gtk2_ardour/export_format_dialog.cc b/gtk2_ardour/export_format_dialog.cc index efd6931900..6906abb5d5 100644 --- a/gtk2_ardour/export_format_dialog.cc +++ b/gtk2_ardour/export_format_dialog.cc @@ -1053,10 +1053,12 @@ ExportFormatDialog::update_demo_noise_selection () } int duration = iter->get_value (demo_noise_cols.duration); int interval = iter->get_value (demo_noise_cols.interval); + int level = demo_noise_dbfs_spinbutton.get_value(); demo_noise_dbfs_spinbutton.set_sensitive (interval != 0 && duration != 0); manager.select_demo_noise_duration (duration); manager.select_demo_noise_interval (interval); + manager.select_demo_noise_level(level); } void