summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_ui.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-08-17 13:55:09 +0000
committerCarl Hetherington <carl@carlh.net>2010-08-17 13:55:09 +0000
commit98d9fe5c9ecf775057436531a104bca884528753 (patch)
treeab40d7faf1ba4bd06db57170ea556697ae41ce0f /gtk2_ardour/ardour_ui.cc
parent797f8b7995ea108e962e5885442d525073b76572 (diff)
Continue rolling after goto-wallclock if appropriate. Fixes #3402.
git-svn-id: svn://localhost/ardour2/branches/3.0@7641 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/ardour_ui.cc')
-rw-r--r--gtk2_ardour/ardour_ui.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc
index dd6da1e246..f1120ccfca 100644
--- a/gtk2_ardour/ardour_ui.cc
+++ b/gtk2_ardour/ardour_ui.cc
@@ -1427,7 +1427,7 @@ ARDOUR_UI::transport_goto_wallclock ()
frames += tmnow.tm_min * (60 * _session->frame_rate());
frames += tmnow.tm_sec * _session->frame_rate();
- _session->request_locate (frames);
+ _session->request_locate (frames, _session->transport_rolling ());
/* force displayed area in editor to start no matter
what "follow playhead" setting is.