mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-30 18:37:40 +01:00
Merge libs/ardour and gtk2_ardour with 2.0-ongoing R2837.
git-svn-id: svn://localhost/ardour2/trunk@2883 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
73dd9d37e7
commit
bb457bb960
168 changed files with 11821 additions and 5338 deletions
|
|
@ -352,9 +352,9 @@ void
|
|||
RouteParams_UI::cleanup_pre_view (bool stopupdate)
|
||||
{
|
||||
if (_active_pre_view) {
|
||||
LadspaPluginUI * plugui = 0;
|
||||
GenericPluginUI * plugui = 0;
|
||||
|
||||
if (stopupdate && (plugui = dynamic_cast<LadspaPluginUI*>(_active_pre_view)) != 0) {
|
||||
if (stopupdate && (plugui = dynamic_cast<GenericPluginUI*>(_active_pre_view)) != 0) {
|
||||
plugui->stop_updating (0);
|
||||
}
|
||||
|
||||
|
|
@ -369,9 +369,9 @@ void
|
|||
RouteParams_UI::cleanup_post_view (bool stopupdate)
|
||||
{
|
||||
if (_active_post_view) {
|
||||
LadspaPluginUI * plugui = 0;
|
||||
GenericPluginUI * plugui = 0;
|
||||
|
||||
if (stopupdate && (plugui = dynamic_cast<LadspaPluginUI*>(_active_post_view)) != 0) {
|
||||
if (stopupdate && (plugui = dynamic_cast<GenericPluginUI*>(_active_post_view)) != 0) {
|
||||
plugui->stop_updating (0);
|
||||
}
|
||||
_post_plugin_conn.disconnect();
|
||||
|
|
@ -581,7 +581,7 @@ RouteParams_UI::redirect_selected (boost::shared_ptr<ARDOUR::Processor> insert,
|
|||
}
|
||||
} else if ((plugin_insert = boost::dynamic_pointer_cast<PluginInsert> (insert)) != 0) {
|
||||
|
||||
LadspaPluginUI *plugin_ui = new LadspaPluginUI (plugin_insert, session->frame_rate(), session->engine().frames_per_cycle(), true);
|
||||
GenericPluginUI *plugin_ui = new GenericPluginUI (plugin_insert, true);
|
||||
|
||||
if (place == PreFader) {
|
||||
cleanup_pre_view();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue