mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Restore Fader and Pan options to audio track automation menus. Hide the Amp processor from the plugin list. Fixes #3184.
git-svn-id: svn://localhost/ardour2/branches/3.0@7170 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
61a4655551
commit
6fbaa5403b
4 changed files with 90 additions and 47 deletions
|
|
@ -92,6 +92,7 @@ class AudioTimeAxisView : public RouteTimeAxisView
|
|||
|
||||
void append_extra_display_menu_items ();
|
||||
Gtk::Menu* build_mode_menu();
|
||||
void build_automation_action_menu ();
|
||||
|
||||
void show_all_automation ();
|
||||
void show_existing_automation ();
|
||||
|
|
@ -102,6 +103,16 @@ class AudioTimeAxisView : public RouteTimeAxisView
|
|||
|
||||
void ensure_pan_views (bool show = true);
|
||||
void update_control_names ();
|
||||
|
||||
void update_gain_track_visibility ();
|
||||
void update_pan_track_visibility ();
|
||||
|
||||
void add_processor_to_subplugin_menu (boost::weak_ptr<ARDOUR::Processor>);
|
||||
|
||||
boost::shared_ptr<AutomationTimeAxisView> gain_track;
|
||||
Gtk::CheckMenuItem* gain_automation_item;
|
||||
std::list<boost::shared_ptr<AutomationTimeAxisView> > pan_tracks;
|
||||
Gtk::CheckMenuItem* pan_automation_item;
|
||||
};
|
||||
|
||||
#endif /* __ardour_audio_time_axis_h__ */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue