Remove debug messages (2/2)

This commit is contained in:
Robin Gareus 2022-03-16 17:07:45 +01:00
parent e603b2e12d
commit 92024cac99
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
3 changed files with 0 additions and 11 deletions

View File

@ -245,8 +245,6 @@ Editor::draw_tempo_marks ()
double max_tempo = 0.0;
double min_tempo = DBL_MAX;
std::cerr << "**** BEGIN DRAW TEMPO\n";
while (t != tempi.end() && mm != tempo_marks.end()) {
Temporal::Point const & mark_point ((*mm)->point());
@ -296,7 +294,6 @@ Editor::draw_tempo_marks ()
if ((mm == tempo_marks.end()) && (t != tempi.end())) {
while (t != tempi.end()) {
std::cerr << "\tmake new tempo marker @ " << t->time() << std::endl;
make_tempo_marker (&*t, min_tempo, max_tempo, prev_ts, tc_color, sr);
++t;
}

View File

@ -541,12 +541,6 @@ MixerStrip::set_route (boost::shared_ptr<Route> rt)
bottom_button_table.remove (group_button);
}
if (rt != route()) {
if (rt && route()) {
std::cerr << "switching from " << rt->name() << " to " << route()->name() << std::endl;
}
}
RouteUI::set_route (rt);
set_trigger_display (rt->triggerbox());

View File

@ -165,10 +165,8 @@ TempoCurve::set_duration (samplecnt_t duration)
snprintf (buf, sizeof (buf), "%.3f/%d", _tempo->note_types_per_minute(), _tempo->note_type());
_start_text->set (buf);
std::cerr << "new start text " << buf << std::endl;
snprintf (buf, sizeof (buf), "%.3f", _tempo->end_note_types_per_minute());
_end_text->set (buf);
std::cerr << "new end text " << buf << std::endl;
const double ui_scale = UIConfiguration::instance ().get_ui_scale ();