1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-24 01:54:22 +00:00

Projucer: Made some usability and reliability improvements to the live-build engine

This commit is contained in:
ed 2017-10-19 12:19:57 +01:00
parent 6db06f7a9a
commit 994ab55247
4 changed files with 16 additions and 11 deletions

View file

@ -264,7 +264,11 @@ private:
void* server;
#endif
void timerCallback() { owner.handleCrash (String()); }
void timerCallback()
{
stopTimer();
owner.handleCrash (String());
}
};
//==============================================================================