mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
permit editing velocity bars option
This commit is contained in:
parent
bf2f4bd28a
commit
38b499a8f0
4 changed files with 26 additions and 5 deletions
|
|
@ -2483,7 +2483,7 @@ RCOptionEditor::RCOptionEditor ()
|
|||
add_option (_("Editor"), rsas);
|
||||
|
||||
add_option (_("Editor/Snap"), new OptionEditorHeading (_("General Snap options:")));
|
||||
|
||||
|
||||
add_option (_("Editor/Snap"),
|
||||
new SpinOption<uint32_t> (
|
||||
"snap-threshold",
|
||||
|
|
@ -2501,7 +2501,7 @@ RCOptionEditor::RCOptionEditor ()
|
|||
sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::get_show_snapped_cursor),
|
||||
sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::set_show_snapped_cursor)
|
||||
));
|
||||
|
||||
|
||||
add_option (_("Editor/Snap"),
|
||||
new BoolOption (
|
||||
"rubberbanding-snaps-to-grid",
|
||||
|
|
@ -2903,6 +2903,24 @@ RCOptionEditor::RCOptionEditor ()
|
|||
|
||||
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 */
|
||||
|
||||
add_option (_("Metronome"), new OptionEditorHeading (_("Metronome")));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue