1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-02 16:49:41 +02:00

Merge scrubbing bug fixes

Bug968 again:  Fix wrong message (ctrl not shift), and omit "maximum" per Peter
  Bug972, partial fix: recording in new project, record head begins at left edge
This commit is contained in:
Paul Licameli 2015-05-25 10:06:30 -04:00
commit a74729aaf7
2 changed files with 3 additions and 2 deletions

View File

@ -967,6 +967,7 @@ void TrackPanel::GetTracksUsableArea(int *width, int *height) const
*width -= GetLabelWidth();
// AS: MAGIC NUMBER: What does 2 represent?
*width -= 2 + kLeftInset;
*width = std::max(0, *width);
}
/// Gets the pointer to the AudacityProject that

View File

@ -109,8 +109,8 @@ void MousePrefs::CreateList()
AddItem(_("Shift-Ctrl-Left-Click"), _("Select"), _("Seek"));
#endif
#ifdef EXPERIMENTAL_SCRUBBING_SMOOTH_SCROLL
AddItem(_("Shift-Left-Double-Click"), _("Select"), _("Smooth Scrolling Scrub"));
AddItem(_("Wheel-Rotate"), _("Select"), _("Change maximum scrub speed"));
AddItem(_("Ctrl-Left-Double-Click"), _("Select"), _("Smooth Scrolling Scrub"));
AddItem(_("Wheel-Rotate"), _("Select"), _("Change scrub speed"));
#endif
#ifdef EXPERIMENTAL_SPECTRAL_EDITING