From 3549189f87813b8c9f01f2f6484b34cf923a65ad Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 8 Jul 2010 01:26:33 +0000 Subject: [PATCH] Send MTC/MMC on the initial playhead grab as well as on subsequent movement. git-svn-id: svn://localhost/ardour2/branches/3.0@7393 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/editor_drag.cc | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/gtk2_ardour/editor_drag.cc b/gtk2_ardour/editor_drag.cc index 1921349893..27ca9b6c78 100644 --- a/gtk2_ardour/editor_drag.cc +++ b/gtk2_ardour/editor_drag.cc @@ -2110,12 +2110,18 @@ CursorDrag::start_grab (GdkEvent* event, Gdk::Cursor* c) if (_cursor == _editor->playhead_cursor) { _editor->_dragging_playhead = true; - if (_editor->session() && _was_rolling && _stop) { - _editor->session()->request_stop (); - } + if (_editor->session()) { + if (_was_rolling && _stop) { + _editor->session()->request_stop (); + } - if (_editor->session() && _editor->session()->is_auditioning()) { - _editor->session()->cancel_audition (); + if (_editor->session()->is_auditioning()) { + _editor->session()->cancel_audition (); + } + + nframes64_t const f = _editor->playhead_cursor->current_frame; + _editor->session()->send_mmc_locate (f); + _editor->session()->send_full_time_code (f); } }