summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_ops.cc
diff options
context:
space:
mode:
authorTaybin Rutkin <taybin@taybin.com>2006-11-06 17:59:03 +0000
committerTaybin Rutkin <taybin@taybin.com>2006-11-06 17:59:03 +0000
commitd4eacffb26a3198a278ed92a0fa556fe1a31d757 (patch)
treec0477837f51b1ffdc93fd6c4fc6b25cef34ee046 /gtk2_ardour/editor_ops.cc
parent4f5af6d062255f7fd21e2550655294c8f04d5a50 (diff)
Two patches from Brian Ahr. Thanks!
*Fixed zooming on edit cursor. *Fixed play-from-edit-cursor. git-svn-id: svn://localhost/ardour2/trunk@1078 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_ops.cc')
-rw-r--r--gtk2_ardour/editor_ops.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/gtk2_ardour/editor_ops.cc b/gtk2_ardour/editor_ops.cc
index ec2435c67b..6d006f94bf 100644
--- a/gtk2_ardour/editor_ops.cc
+++ b/gtk2_ardour/editor_ops.cc
@@ -1088,7 +1088,7 @@ Editor::temporal_zoom (gdouble fpu)
case ZoomFocusEdit:
/* try to keep the edit cursor in the center */
- if (edit_cursor->current_frame > leftmost_frame + (new_page/2)) {
+ if (edit_cursor->current_frame > new_page/2) {
leftmost_after_zoom = edit_cursor->current_frame - (new_page/2);
} else {
leftmost_after_zoom = 0;
@@ -1855,6 +1855,12 @@ Editor::play_from_start ()
}
void
+Editor::play_from_edit_cursor ()
+{
+ session->request_locate (edit_cursor->current_frame, true);
+}
+
+void
Editor::play_selection ()
{
if (selection->time.empty()) {