Transmit MTC on playhead drag, as per #3239.

git-svn-id: svn://localhost/ardour2/branches/3.0@7389 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2010-07-07 23:48:46 +00:00
parent 28e3215afa
commit 10ef65b696
5 changed files with 11 additions and 8 deletions

View file

@ -2138,7 +2138,9 @@ CursorDrag::motion (GdkEvent* event, bool)
_editor->show_verbose_time_cursor (_cursor->current_frame, 10);
if (_editor->session() && _item == &_editor->playhead_cursor->canvas_item) {
_editor->session()->send_mmc_locate (_editor->playhead_cursor->current_frame);
nframes64_t const f = _editor->playhead_cursor->current_frame;
_editor->session()->send_mmc_locate (f);
_editor->session()->send_full_time_code (f);
}