From 6f1208036fe7eb9278b2708843c6bce817bbdf8d Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 31 Mar 2006 16:16:16 +0000 Subject: [PATCH] zoom to session now uses the start marker instead of zero git-svn-id: svn://localhost/trunk/ardour2@434 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/editor_ops.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/editor_ops.cc b/gtk2_ardour/editor_ops.cc index ba40d63fe7..d5a87594c3 100644 --- a/gtk2_ardour/editor_ops.cc +++ b/gtk2_ardour/editor_ops.cc @@ -1123,7 +1123,7 @@ void Editor::temporal_zoom_session () { if (session) { - temporal_zoom_by_frame (0, session->current_end_frame(), "zoom to session"); + temporal_zoom_by_frame (session->current_start_frame(), session->current_end_frame(), "zoom to session"); } }