MCP: tweak operation of most transport buttons, make save button work, start using button enums more widely

git-svn-id: svn://localhost/ardour2/branches/3.0@11879 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis
2012-04-11 02:30:35 +00:00
parent f03ff886c9
commit f387e834fd
6 changed files with 252 additions and 290 deletions

View File

@@ -100,13 +100,13 @@ BasicUI::add_marker ()
void
BasicUI::rewind ()
{
session->request_transport_speed (-2.0f);
session->request_transport_speed (session->transport_speed() * 1.5);
}
void
BasicUI::ffwd ()
{
session->request_transport_speed (2.0f);
session->request_transport_speed (session->transport_speed() + 1.5);
}
void