remove some debug output

This commit is contained in:
Paul Davis 2025-08-20 07:04:46 -06:00
parent 6589fdf9e8
commit 2563eb2e1d
2 changed files with 5 additions and 1 deletions

View file

@ -160,7 +160,7 @@ AudioClipEditor::pack_outer (Gtk::Box& box)
if (with_transport_controls) {
box.pack_start (play_box, false, false);
}
std::cerr << "pack up rec box\n";
box.pack_start (rec_box, false, false);
box.pack_start (follow_playhead_button, false, false);
}

View file

@ -292,8 +292,12 @@ Editor::import_smf_tempo_map (Evoral::SMF const & smf, timepos_t const & pos)
tmcb = new_map->copy (timepos_t::zero (Temporal::AudioTime), timepos_t::from_superclock (new_map->duration(Temporal::AudioTime).superclocks()));
if (tmcb && !tmcb->empty()) {
std::cerr << "CB\n";
tmcb->dump (std::cerr);
wmap->paste (*tmcb, pos, false, _("import"));
TempoMap::update (wmap);
std::cerr << "final map\n";
TempoMap::use()->dump (std::cerr);
delete tmcb;
// XMLNode& tm_after (wmap->get_state());
// _session->add_command (new TempoCommand (_("cut tempo map"), &tm_before, &tm_after));