13
0

remove accumulated debug output

This commit is contained in:
Paul Davis 2020-03-25 15:12:13 -06:00
parent a0f2ae4833
commit 4151ec1907
3 changed files with 0 additions and 23 deletions

View File

@ -3998,20 +3998,14 @@ CursorDrag::start_grab (GdkEvent* event, Gdk::Cursor* c)
{
Drag::start_grab (event, c);
cerr << "start CD event type " << event->type << " @ " << event->button.x << " PH @ " << _editor->playhead_cursor->current_sample() << endl;
setup_snap_delta (MusicSample (_editor->playhead_cursor->current_sample(), 0));
_grab_zoom = _editor->samples_per_pixel;
MusicSample where (_editor->canvas_event_sample (event) + snap_delta (event->button.state), 0);
cerr << "where is " << _editor->canvas_event_sample (event) << " + " << snap_delta (event->button.state) << " = " << where.sample << endl;
_editor->snap_to_with_modifier (where, event);
cerr << "after snap " << where.sample << endl;
_editor->_dragging_playhead = true;
_editor->_control_scroll_target = where.sample;
@ -4047,8 +4041,6 @@ CursorDrag::start_grab (GdkEvent* event, Gdk::Cursor* c)
}
}
cerr << "fake locate to " << where.sample << endl;
fake_locate (where.sample - snap_delta (event->button.state));
_last_y_delta = 0;
@ -4059,11 +4051,6 @@ CursorDrag::motion (GdkEvent* event, bool)
{
MusicSample where (_editor->canvas_event_sample (event) + snap_delta (event->button.state), 0);
#ifndef NDEBUG
cerr << "cursor drag motion event type " << event->type << " x = " << event->motion.x << " spp " << _editor->get_current_zoom()
<< " would be " << event->motion.x * _editor->get_current_zoom() << " @ " << _editor->canvas_event_sample (event) << " + " << snap_delta (event->button.state) << " = " << where.sample << endl;
#endif
_editor->snap_to_with_modifier (where, event);
if (where.sample != last_pointer_sample()) {
@ -4107,8 +4094,6 @@ CursorDrag::motion (GdkEvent* event, bool)
void
CursorDrag::finished (GdkEvent* event, bool movement_occurred)
{
PBD::stacktrace (std::cerr, 40);
_editor->_dragging_playhead = false;
_cursor.track_canvas_item().ungrab();
@ -4121,9 +4106,6 @@ CursorDrag::finished (GdkEvent* event, bool movement_occurred)
Session* s = _editor->session ();
if (s) {
#ifndef NDEBUG
cerr << "cursor drag finished, reqL with " << _editor->playhead_cursor->current_sample() << endl;
#endif
s->request_locate (_editor->playhead_cursor->current_sample (), _was_rolling ? MustRoll : MustStop);
_editor->_pending_locate_request = true;
s->request_resume_timecode_transmission ();

View File

@ -179,8 +179,6 @@ Editor::canvas_event_sample (GdkEvent const * event, double* pcx, double* pcy) c
return 0;
}
cerr << "Event coords " << x << ", " << y << " zoom = " << samples_per_pixel << " loc = " << pixel_to_sample_from_event (x) << endl;
if (pcx) {
*pcx = x;
}
@ -1653,7 +1651,6 @@ Editor::button_release_handler (ArdourCanvas::Item* item, GdkEvent* event, ItemT
switch (item_type) {
/* see comments in button_press_handler */
case PlayheadCursorItem:
std::cerr << "in middle of playhead cursor event handler\n";
case MarkerItem:
case GainLineItem:
case AutomationLineItem:

View File

@ -769,8 +769,6 @@ GtkCanvas::deliver_event (GdkEvent* event)
Item* parent = item->parent ();
DEBUG_TRACE (PBD::DEBUG::CanvasEvents, string_compose ("consider delivery to %1 %2 (ignored = ? %3)\n", item->whatami(), item->name.empty() ? "[unknown]" : item->name, item->ignore_events()));
if (!item->ignore_events () &&
item->Event (event)) {
/* this item has just handled the event */