Set up session range location correctly from 2.X sessions. Fixes #3435.
git-svn-id: svn://localhost/ardour2/branches/3.0@7750 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
db2f662471
commit
7c678d0713
@ -742,7 +742,7 @@ Locations::get_state ()
|
||||
LocationList::iterator iter;
|
||||
Glib::Mutex::Lock lm (lock);
|
||||
|
||||
for (iter = locations.begin(); iter != locations.end(); ++iter) {
|
||||
for (iter = locations.begin(); iter != locations.end(); ++iter) {
|
||||
node->add_child_nocopy ((*iter)->get_state ());
|
||||
}
|
||||
|
||||
@ -791,10 +791,10 @@ Locations::set_state (const XMLNode& node, int version)
|
||||
string::size_type const c = v.find_first_of (',');
|
||||
string const s = v.substr (0, c);
|
||||
if (s == X_("IsStart")) {
|
||||
session_range_location->set_start (loc->start());
|
||||
session_range_location->set_start (loc->start(), true);
|
||||
add = false;
|
||||
} else if (s == X_("IsEnd")) {
|
||||
session_range_location->set_end (loc->start());
|
||||
session_range_location->set_end (loc->start(), true);
|
||||
add = false;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user