Remove some spurious printouts

This commit is contained in:
Ben Loftis 2021-12-08 13:39:38 -06:00
parent be27e7359f
commit 972229a02f
2 changed files with 0 additions and 4 deletions

View File

@ -123,7 +123,6 @@ RegionPropertiesBox::set_session (Session* s)
void
RegionPropertiesBox::set_region (boost::shared_ptr<Region> r)
{
printf(" slot, region name %s\n", r->name().c_str());
set_session(&r->session());
state_connection.disconnect();
@ -148,14 +147,12 @@ RegionPropertiesBox::region_changed (const PBD::PropertyChange& what_changed)
// interesting_stuff.add (ARDOUR::Properties::length);
// interesting_stuff.add (ARDOUR::Properties::start);
// if (what_changed.contains (interesting_stuff))
printf(" slot, region name %s\n", _region->name().c_str());
{
AudioClock::Mode mode = _region->position_time_domain() == Temporal::AudioTime ? AudioClock::Samples : AudioClock::BBT;
start_clock.set_mode (mode);
length_clock.set_mode (mode);
printf(" slot, region start %s\n", _region->start().str().c_str());
start_clock.set (_region->start());
length_clock.set_duration (_region->length());

View File

@ -897,7 +897,6 @@ GtkCanvas::on_realize ()
void
GtkCanvas::on_size_allocate (Gtk::Allocation& a)
{
std::cerr << "GtkCanvas::size_allocate (" << a.get_width() << " x " << a.get_height() << ")\n";
EventBox::on_size_allocate (a);
if (_use_image_surface) {