13
0

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:
Carl Hetherington 2010-09-07 12:19:41 +00:00
parent db2f662471
commit 7c678d0713

View File

@ -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;
}