Skip to content

Commit

Permalink
more playhead-drag/click locate debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldavisthefirst committed Mar 25, 2020
1 parent 1b05ebb commit dbcd78c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gtk2_ardour/editor_canvas_events.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1106,7 +1106,9 @@ Editor::canvas_meter_bar_event (GdkEvent *event, ArdourCanvas::Item* item)
bool
Editor::canvas_playhead_cursor_event (GdkEvent *event, ArdourCanvas::Item* item)
{
return typed_event (item, event, PlayheadCursorItem);
bool ret = typed_event (item, event, PlayheadCursorItem);
cerr << " playhead cursor event, ret was " << ret << endl;
return ret;
}

bool
Expand Down
1 change: 1 addition & 0 deletions gtk2_ardour/editor_mouse.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1653,6 +1653,7 @@ 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:
Expand Down

0 comments on commit dbcd78c

Please sign in to comment.