1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-11 15:16:27 +01:00

Bug989, and scrub UI uses left button to seek, not Shift key

Updated mouse preferences and status bar message accordingly

Also, use the term "Scroll-scrub" in status bar and mouse preferences
This commit is contained in:
Paul Licameli
2015-05-29 20:13:42 -04:00
parent 9f2dfbc70b
commit 8d2a29d376
4 changed files with 42 additions and 23 deletions

View File

@@ -306,14 +306,14 @@ class AUDACITY_DLL_API TrackPanel:public wxPanel {
#ifdef EXPERIMENTAL_SCRUBBING_BASIC
bool IsScrubbing();
void ToggleScrubbing(
void MarkScrubStart(
wxCoord xx
#ifdef EXPERIMENTAL_SCRUBBING_SMOOTH_SCROLL
, bool smoothScrolling
#endif
);
bool MaybeStartScrubbing(wxMouseEvent &event);
bool ContinueScrubbing(wxCoord position, bool maySkip);
bool ContinueScrubbing(wxCoord position, bool hasFocus, bool maySkip);
bool StopScrubbing();
#endif
@@ -782,6 +782,7 @@ protected:
double mMaxScrubSpeed;
int mScrubSpeedDisplayCountdown;
bool mScrubHasFocus;
bool mScrubSeekPress;
#endif
#ifdef EXPERIMENTAL_SCRUBBING_SMOOTH_SCROLL