summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_ops.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2006-03-31 16:16:16 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2006-03-31 16:16:16 +0000
commit6f1208036fe7eb9278b2708843c6bce817bbdf8d (patch)
tree64c5eeaa5a09869397d0212d17bfdcffb10d54e6 /gtk2_ardour/editor_ops.cc
parent9643eb4b2320c2ec77613cddd6a66056514bcdfa (diff)
zoom to session now uses the start marker instead of zero
git-svn-id: svn://localhost/trunk/ardour2@434 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_ops.cc')
-rw-r--r--gtk2_ardour/editor_ops.cc2
1 files changed, 1 insertions, 1 deletions
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");
}
}