mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
Stripable signals moved to PresentationInfo
This commit is contained in:
parent
b685b6e175
commit
9d3aba30c4
3 changed files with 3 additions and 3 deletions
|
|
@ -318,7 +318,7 @@ EditorRoutes::EditorRoutes (Editor* e)
|
|||
_display.set_enable_search (false);
|
||||
|
||||
Route::PluginSetup.connect_same_thread (*this, boost::bind (&EditorRoutes::plugin_setup, this, _1, _2, _3));
|
||||
Stripable::PresentationInfoChange.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::sync_treeview_from_presentation_info, this), gui_context());
|
||||
PresentationInfo::Change.connect (*this, MISSING_INVALIDATOR, boost::bind (&EditorRoutes::sync_treeview_from_presentation_info, this), gui_context());
|
||||
}
|
||||
|
||||
bool
|
||||
|
|
|
|||
|
|
@ -107,7 +107,7 @@ EditorSummary::set_session (Session* s)
|
|||
|
||||
if (_session) {
|
||||
Region::RegionPropertyChanged.connect (region_property_connection, invalidator (*this), boost::bind (&EditorSummary::set_background_dirty, this), gui_context());
|
||||
Stripable::PresentationInfoChange.connect (route_ctrl_id_connection, invalidator (*this), boost::bind (&EditorSummary::set_background_dirty, this), gui_context());
|
||||
PresentationInfo::Change.connect (route_ctrl_id_connection, invalidator (*this), boost::bind (&EditorSummary::set_background_dirty, this), gui_context());
|
||||
_editor->playhead_cursor->PositionChanged.connect (position_connection, invalidator (*this), boost::bind (&EditorSummary::playhead_position_changed, this, _1), gui_context());
|
||||
_session->StartTimeChanged.connect (_session_connections, invalidator (*this), boost::bind (&EditorSummary::set_background_dirty, this), gui_context());
|
||||
_session->EndTimeChanged.connect (_session_connections, invalidator (*this), boost::bind (&EditorSummary::set_background_dirty, this), gui_context());
|
||||
|
|
|
|||
|
|
@ -108,7 +108,7 @@ Mixer_UI::Mixer_UI ()
|
|||
, _maximised (false)
|
||||
, _show_mixer_list (true)
|
||||
{
|
||||
Stripable::PresentationInfoChange.connect (*this, invalidator (*this), boost::bind (&Mixer_UI::sync_treeview_from_presentation_info, this), gui_context());
|
||||
PresentationInfo::Change.connect (*this, invalidator (*this), boost::bind (&Mixer_UI::sync_treeview_from_presentation_info, this), gui_context());
|
||||
|
||||
/* bindings was already set in MixerActor constructor */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue