mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-03 04:09:29 +01:00
Add option add automation-lane points on the line -- #7397
This commit is contained in:
parent
c2cba9e57c
commit
973d58e8f9
3 changed files with 26 additions and 12 deletions
|
|
@ -2394,6 +2394,16 @@ RCOptionEditor::RCOptionEditor ()
|
|||
sigc::mem_fun (*_rc_config, &RCConfiguration::set_automation_follows_regions)
|
||||
));
|
||||
|
||||
bo = new BoolOption (
|
||||
"new-automation-points-on-lane",
|
||||
_("Ignore Y-axis click position when adding new automation-points"),
|
||||
sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::get_new_automation_points_on_lane),
|
||||
sigc::mem_fun (UIConfiguration::instance(), &UIConfiguration::set_new_automation_points_on_lane)
|
||||
);
|
||||
add_option (_("Editor"), bo);
|
||||
Gtkmm2ext::UI::instance()->set_tip (bo->tip_widget(),
|
||||
_("<b>When enabled</b> The new points drawn in any automation lane will be placed on the existing line, regardless of mouse y-axis position."));
|
||||
|
||||
ComboOption<FadeShape>* fadeshape = new ComboOption<FadeShape> (
|
||||
"default-fade-shape",
|
||||
_("Default fade shape"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue