mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-13 01:56:34 +01:00
fix bad fix for cherry-pick conflict
This commit is contained in:
parent
e8b6f852f6
commit
c76523aeaa
1 changed files with 4 additions and 4 deletions
|
|
@ -1424,10 +1424,10 @@ Session::location_added (Location *location)
|
||||||
if (location->is_skip()) {
|
if (location->is_skip()) {
|
||||||
/* listen for per-location signals that require us to update skip-locate events */
|
/* listen for per-location signals that require us to update skip-locate events */
|
||||||
|
|
||||||
location->StartChanged.connect_same_thread (skip_connections, boost::bind (&Session::update_skips, this, location, true));
|
location->StartChanged.connect_same_thread (skip_update_connections, boost::bind (&Session::update_skips, this, location, true));
|
||||||
location->EndChanged.connect_same_thread (skip_connections, boost::bind (&Session::update_skips, this, location, true));
|
location->EndChanged.connect_same_thread (skip_update_connections, boost::bind (&Session::update_skips, this, location, true));
|
||||||
location->Changed.connect_same_thread (skip_connections, boost::bind (&Session::update_skips, this, location, true));
|
location->Changed.connect_same_thread (skip_update_connections, boost::bind (&Session::update_skips, this, location, true));
|
||||||
location->FlagsChanged.connect_same_thread (skip_connections, boost::bind (&Session::update_skips, this, location, false));
|
location->FlagsChanged.connect_same_thread (skip_update_connections, boost::bind (&Session::update_skips, this, location, false));
|
||||||
|
|
||||||
update_skips (location, true);
|
update_skips (location, true);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue