1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-11 17:13:37 +02:00

Better fix for bug 802.

This commit is contained in:
stevethefiddle@gmail.com
2015-01-05 11:07:55 +00:00
parent 82b2302921
commit c8cabab88b
3 changed files with 54 additions and 4 deletions

View File

@@ -268,7 +268,10 @@ public:
void SetProject(AudacityProject* project) {mProject = project;};
void GetMaxSize(wxCoord *width, wxCoord *height);
void RegenerateTooltips();
private:
void OnCapture(wxCommandEvent & evt);
void OnErase(wxEraseEvent &evt);
void OnPaint(wxPaintEvent &evt);
void OnSize(wxSizeEvent &evt);
@@ -306,6 +309,8 @@ private:
double mPlayRegionStart;
double mPlayRegionEnd;
bool mIsRecording;
enum MouseEventState {
mesNone,
mesDraggingPlayRegionStart,