Make the session start/end location a single location (with start and end) rather than two separate ones. Fixes #1298.

git-svn-id: svn://localhost/ardour2/branches/3.0@6929 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2010-04-18 21:29:48 +00:00
parent d9cac66b5d
commit 895bad1dcd
15 changed files with 94 additions and 134 deletions

View file

@ -226,7 +226,7 @@ LocationEditRow::set_location (Location *loc)
item_table.attach (remove_button, 6, 7, 0, 1, FILL, FILL, 4, 0);
}
if (location->is_end() || location->is_start()) {
if (location->is_session_range()) {
remove_button.set_sensitive (false);
}
@ -671,7 +671,7 @@ LocationUI::do_location_remove (ARDOUR::Location *loc)
cannot be removed.
*/
if (loc->is_end()) {
if (loc->is_session_range()) {
return FALSE;
}