Add preference to limit concurrent RTA

This prevents accidentally analyzing hundreds of tracks,
making the machine grind to a halt.
This commit is contained in:
Robin Gareus 2025-10-15 01:42:41 +02:00
parent 360d069928
commit d158e5371d
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
4 changed files with 51 additions and 0 deletions

View file

@ -121,6 +121,7 @@ UI_CONFIG_VARIABLE (ARDOUR::PluginGUIBehavior, plugin_gui_behavior, "plugin-gui-
UI_CONFIG_VARIABLE (bool, show_inline_display_by_default, "show-inline-display-by-default", true)
UI_CONFIG_VARIABLE (int32_t, max_plugin_chart, "max-plugin-chart", 10)
UI_CONFIG_VARIABLE (int32_t, max_plugin_recent, "max-plugin-recent", 10)
UI_CONFIG_VARIABLE (uint32_t, max_active_rta, "max-active-rta", 8)
UI_CONFIG_VARIABLE (bool, prefer_inline_over_gui, "prefer-inline-over-gui", true)
UI_CONFIG_VARIABLE (uint32_t, max_inline_controls, "max-inline-controls", 32) /* per processor */
UI_CONFIG_VARIABLE (uint32_t, action_table_columns, "action-table-columns", 3)