From 162d36ffc887b298218c4c6833c05969a6f794f7 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 18 Mar 2021 12:08:52 -0600 Subject: [PATCH] remove some debug output --- gtk2_ardour/audio_clock.cc | 4 ---- gtk2_ardour/editor_tempodisplay.cc | 1 - 2 files changed, 5 deletions(-) diff --git a/gtk2_ardour/audio_clock.cc b/gtk2_ardour/audio_clock.cc index 340bc64636..6d029f1be5 100644 --- a/gtk2_ardour/audio_clock.cc +++ b/gtk2_ardour/audio_clock.cc @@ -1835,12 +1835,8 @@ AudioClock::on_motion_notify_event (GdkEventMotion *ev) timepos_t pos = current_time (); timepos_t step = get_incremental_step (drag_field, pos); - cerr << "step " << step; - step *= fabs (drag_accum); - cerr << " via DA " << drag_accum << " actual " << step << endl; - if (drag_accum > 0) { /* positive, so downward motion ... decrement clock */ if (!step.zero() && (step < pos)) { diff --git a/gtk2_ardour/editor_tempodisplay.cc b/gtk2_ardour/editor_tempodisplay.cc index ca210e9418..8f754aab34 100644 --- a/gtk2_ardour/editor_tempodisplay.cc +++ b/gtk2_ardour/editor_tempodisplay.cc @@ -268,7 +268,6 @@ Editor::compute_current_bbt_points (Temporal::TempoMapPoints& grid, samplepos_t case bbt_show_thirtyseconds: case bbt_show_sixtyfourths: case bbt_show_onetwentyeighths: - cout << "GG " << leftmost << " .. " << rightmost << " 0\n"; tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 0); break;