Re-add timer...fixes bug #655

This commit is contained in:
lllucius@gmail.com 2014-12-04 07:15:58 +00:00
parent cddff18025
commit 3029c1dd3c
2 changed files with 5 additions and 0 deletions

View File

@ -1472,6 +1472,9 @@ void AudacityApp::FinishInits()
ModuleManager::Get().Dispatch(AppInitialized);
mWindowRectAlreadySaved = FALSE;
mTimer.SetOwner(this, kAudacityAppTimerID);
mTimer.Start(200);
}
void AudacityApp::InitCommandHandler()

View File

@ -209,6 +209,8 @@ class AudacityApp:public wxApp {
wxSingleInstanceChecker *mChecker;
wxTimer mTimer;
bool m_aliasMissingWarningShouldShow;
BlockFile *m_LastMissingBlockFile;