mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-10 15:36:24 +01:00
remove debug output
This commit is contained in:
parent
0472453d94
commit
7675b88b02
1 changed files with 0 additions and 2 deletions
|
|
@ -4516,7 +4516,6 @@ Editor::set_loop_range (framepos_t start, framepos_t end, string cmd)
|
|||
Location* tll;
|
||||
|
||||
if ((tll = transport_loop_location()) == 0) {
|
||||
cerr << "Set loop with new loc\n";
|
||||
Location* loc = new Location (*_session, start, end, _("Loop"), Location::IsAutoLoop);
|
||||
XMLNode &before = _session->locations()->get_state();
|
||||
_session->locations()->add (loc, true);
|
||||
|
|
@ -4524,7 +4523,6 @@ Editor::set_loop_range (framepos_t start, framepos_t end, string cmd)
|
|||
XMLNode &after = _session->locations()->get_state();
|
||||
_session->add_command (new MementoCommand<Locations>(*(_session->locations()), &before, &after));
|
||||
} else {
|
||||
cerr << "Set loop with existing loc " << tll << endl;
|
||||
XMLNode &before = tll->get_state();
|
||||
tll->set_hidden (false, this);
|
||||
tll->set (start, end);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue