mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 19:56:31 +01:00
move velocity display options under Appearance/Editor
This commit is contained in:
parent
870fe055cf
commit
db5377da46
1 changed files with 17 additions and 18 deletions
|
|
@ -2903,24 +2903,6 @@ RCOptionEditor::RCOptionEditor ()
|
||||||
|
|
||||||
add_option (_("MIDI"), audition_synth);
|
add_option (_("MIDI"), audition_synth);
|
||||||
|
|
||||||
add_option (_("MIDI"), new OptionEditorHeading (_("Velocity Display")));
|
|
||||||
|
|
||||||
add_option (_("MIDI"),
|
|
||||||
new BoolOption (
|
|
||||||
"use-note-bars-for-velocity",
|
|
||||||
_("Show velocity horizontally inside notes"),
|
|
||||||
sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::get_use_note_bars_for_velocity),
|
|
||||||
sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::set_use_note_bars_for_velocity)
|
|
||||||
));
|
|
||||||
|
|
||||||
add_option (_("MIDI"),
|
|
||||||
new BoolOption (
|
|
||||||
"use-note-color-for-velocity",
|
|
||||||
_("Use colors to show note velocity"),
|
|
||||||
sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::get_use_note_color_for_velocity),
|
|
||||||
sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::set_use_note_color_for_velocity)
|
|
||||||
));
|
|
||||||
|
|
||||||
/* Click */
|
/* Click */
|
||||||
|
|
||||||
add_option (_("Metronome"), new OptionEditorHeading (_("Metronome")));
|
add_option (_("Metronome"), new OptionEditorHeading (_("Metronome")));
|
||||||
|
|
@ -3809,6 +3791,23 @@ RCOptionEditor::RCOptionEditor ()
|
||||||
sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::set_never_display_periodic_midi)
|
sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::set_never_display_periodic_midi)
|
||||||
));
|
));
|
||||||
|
|
||||||
|
|
||||||
|
add_option (_("Appearance/Editor"),
|
||||||
|
new BoolOption (
|
||||||
|
"use-note-bars-for-velocity",
|
||||||
|
_("Show velocity horizontally inside notes"),
|
||||||
|
sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::get_use_note_bars_for_velocity),
|
||||||
|
sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::set_use_note_bars_for_velocity)
|
||||||
|
));
|
||||||
|
|
||||||
|
add_option (_("Appearance/Editor"),
|
||||||
|
new BoolOption (
|
||||||
|
"use-note-color-for-velocity",
|
||||||
|
_("Use colors to show note velocity"),
|
||||||
|
sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::get_use_note_color_for_velocity),
|
||||||
|
sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::set_use_note_color_for_velocity)
|
||||||
|
));
|
||||||
|
|
||||||
add_option (_("Appearance/Editor"), new OptionEditorBlank ());
|
add_option (_("Appearance/Editor"), new OptionEditorBlank ());
|
||||||
|
|
||||||
/* The names of these controls must be the same as those given in MixerStrip
|
/* The names of these controls must be the same as those given in MixerStrip
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue