summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_ui.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-01-11 20:36:35 +0000
committerDavid Robillard <d@drobilla.net>2007-01-11 20:36:35 +0000
commit32f3a4ae3e41f0c348dadd0811817c832b624438 (patch)
treee7794848fdc8fccf957a12dd37b321f8cb4419c8 /gtk2_ardour/ardour_ui.cc
parentf7563c2b158252339f98e38719cfc3e092ef7ac7 (diff)
Merged with trunk R1311.
git-svn-id: svn://localhost/ardour2/branches/midi@1312 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/ardour_ui.cc')
-rw-r--r--gtk2_ardour/ardour_ui.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc
index 07d322a1fb..3ecc618eba 100644
--- a/gtk2_ardour/ardour_ui.cc
+++ b/gtk2_ardour/ardour_ui.cc
@@ -994,7 +994,7 @@ ARDOUR_UI::transport_goto_start ()
*/
if (editor) {
- editor->reposition_x_origin (session->current_start_frame());
+ editor->reset_x_origin (session->current_start_frame());
}
}
}
@@ -1011,7 +1011,7 @@ ARDOUR_UI::transport_goto_zero ()
*/
if (editor) {
- editor->reposition_x_origin (0);
+ editor->reset_x_origin (0);
}
}
}
@@ -1028,7 +1028,7 @@ ARDOUR_UI::transport_goto_end ()
*/
if (editor) {
- editor->reposition_x_origin (frame);
+ editor->reset_x_origin (frame);
}
}
}