From b4d95eec57b082de2893d4fb9fd51bea0df62473 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 7 Jun 2023 22:13:09 +0200 Subject: [PATCH] Do play MIDI notes on selection/draw by default Since 4ad1c191662 "select all" etc no longer plays all notes, and possibility to get a loud speaker-blasting cacophony is greatly reduced. We may still want to add some additional heuristics, or special case drawing new notes/hits, but for now this it is sensible to enable this by default. --- gtk2_ardour/ui_config_vars.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/ui_config_vars.h b/gtk2_ardour/ui_config_vars.h index 229fd356d3..d414d3adda 100644 --- a/gtk2_ardour/ui_config_vars.h +++ b/gtk2_ardour/ui_config_vars.h @@ -62,7 +62,7 @@ UI_CONFIG_VARIABLE (ARDOUR::WaveformScale, waveform_scale, "waveform-scale", Log UI_CONFIG_VARIABLE (ARDOUR::WaveformShape, waveform_shape, "waveform-shape", Traditional) UI_CONFIG_VARIABLE (bool, update_editor_during_summary_drag, "update-editor-during-summary-drag", true) UI_CONFIG_VARIABLE (bool, never_display_periodic_midi, "never-display-periodic-midi", true) -UI_CONFIG_VARIABLE (bool, sound_midi_notes, "sound-midi-notes", false) +UI_CONFIG_VARIABLE (bool, sound_midi_notes, "sound-midi-notes", true) UI_CONFIG_VARIABLE (bool, show_plugin_scan_window, "show-plugin-scan-window", false) UI_CONFIG_VARIABLE (bool, show_manager_if_plugins_are_missing, "show-manager-if-plugins-are-missing", true) UI_CONFIG_VARIABLE (bool, show_zoom_tools, "show-zoom-tools", true)