From ea7cb51ed8f7193de6e800bc482ffa30c18047f4 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 6 Jan 2010 01:36:20 +0000 Subject: When moving around using nudge / move to next region etc., arrange the canvas so that the playhead is either a quarter of the way from the left (when moving right) or a quarter of the way from the right (when moving left). git-svn-id: svn://localhost/ardour2/branches/3.0@6461 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/editor_mixer.cc | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'gtk2_ardour/editor_mixer.cc') diff --git a/gtk2_ardour/editor_mixer.cc b/gtk2_ardour/editor_mixer.cc index b2cca47e98..21a35f6da3 100644 --- a/gtk2_ardour/editor_mixer.cc +++ b/gtk2_ardour/editor_mixer.cc @@ -243,8 +243,20 @@ Editor::update_current_screen () } else { center_screen (current_page_frames()/2); } + } else { - center_screen (frame+(current_page_frames()/2)); + + if (frame < leftmost_frame) { + /* moving left: end up with the playhead 3/4 of the way along the page */ + nframes64_t l = frame - (3 * current_page_frames() / 4); + if (l < 0) { + l = 0; + } + center_screen_internal (l + (current_page_frames() / 2), current_page_frames ()); + } else { + /* moving right: end up with the playhead 1/4 of the way along the page */ + center_screen_internal (frame + (current_page_frames() / 4), current_page_frames ()); + } } } -- cgit v1.2.3