move region information preferences into Appearance

This makes some space on the Editor tab/page, and they were more appearance
related anyway
This commit is contained in:
Paul Davis 2023-07-26 18:39:48 -06:00
parent acac9ac006
commit 70e97e2724

View file

@ -3120,12 +3120,9 @@ These settings will only take effect after %1 is restarted.\n\
parameter_changed ("enable-translation"); parameter_changed ("enable-translation");
#endif // ENABLE_NLS #endif // ENABLE_NLS
add_option (_("Appearance/Regions"), new OptionEditorHeading (_("Region Information")));
/* EDITOR *******************************************************************/ add_option (_("Appearance/Regions"),
add_option (_("Editor"), new OptionEditorHeading (_("Region Information")));
add_option (_("Editor"),
new BoolOption ( new BoolOption (
"show-region-xrun-markers", "show-region-xrun-markers",
_("Show xrun markers in regions"), _("Show xrun markers in regions"),
@ -3133,7 +3130,7 @@ These settings will only take effect after %1 is restarted.\n\
sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::set_show_region_xrun_markers) sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::set_show_region_xrun_markers)
)); ));
add_option (_("Editor"), add_option (_("Appearance/Regions"),
new BoolOption ( new BoolOption (
"show-region-cue-markers", "show-region-cue-markers",
_("Show cue markers in regions"), _("Show cue markers in regions"),
@ -3141,7 +3138,7 @@ These settings will only take effect after %1 is restarted.\n\
sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::set_show_region_cue_markers) sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::set_show_region_cue_markers)
)); ));
add_option (_("Editor"), add_option (_("Appearance/Regions"),
new BoolComboOption ( new BoolComboOption (
"show-region-gain-envelopes", "show-region-gain-envelopes",
_("Show gain envelopes in audio regions"), _("Show gain envelopes in audio regions"),
@ -3151,6 +3148,10 @@ These settings will only take effect after %1 is restarted.\n\
sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::set_show_region_gain) sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::set_show_region_gain)
)); ));
/* EDITOR *******************************************************************/
add_option (_("Editor"), new OptionEditorHeading (_("Scroll and Zoom Behaviors"))); add_option (_("Editor"), new OptionEditorHeading (_("Scroll and Zoom Behaviors")));
if (!Profile->get_mixbus()) { if (!Profile->get_mixbus()) {