1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-26 23:33:49 +01:00

Bug990 (seek key reponsiveness), and, change Scrub UI again, so Ctrl key seeks.

Includes changes to Mouse Preferences and status bar messages.
This commit is contained in:
Paul Licameli
2015-05-29 17:18:10 -04:00
parent c79b10713f
commit 841bca36ea
4 changed files with 38 additions and 13 deletions

View File

@@ -105,11 +105,11 @@ void MousePrefs::CreateList()
AddItem(_("Shift-Left-Click"), _("Select"), _("Extend Selection Range"));
AddItem(_("Left-Double-Click"), _("Select"), _("Select Clip or Entire Track"));
#ifdef EXPERIMENTAL_SCRUBBING_BASIC
AddItem(_("Ctrl-Left-Click"), _("Select"), _("Scrub"));
AddItem(_("Shift-Ctrl-Left-Click"), _("Select"), _("Seek"));
AddItem(_("Ctrl-Left-Click"), _("Select"), _("Scrub"));
AddItem(_("Ctrl"), _("Select"), _("Seek (while scrubbing)"));
#endif
#ifdef EXPERIMENTAL_SCRUBBING_SMOOTH_SCROLL
AddItem(_("Ctrl-Left-Double-Click"), _("Select"), _("Smooth Scrolling Scrub"));
AddItem(_("Ctrl-Left-Double-Click"), _("Select"), _("Scroll-Scrub"));
AddItem(_("Wheel-Rotate"), _("Select"), _("Change scrub speed"));
#endif