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:
commit
a74729aaf7
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user