Workaround for OSX freeze when filling zones in GAL

More details:
https://lists.launchpad.net/kicad-developers/msg32306.html
This commit is contained in:
Maciej Suminski 2017-12-11 10:39:34 +01:00
parent 5572183c22
commit f19aed9d5c
1 changed files with 4 additions and 0 deletions

View File

@ -85,7 +85,11 @@ ZONE_FILLER::~ZONE_FILLER()
void ZONE_FILLER::SetProgressReporter( PROGRESS_REPORTER* aReporter )
{
// TODO OSX currently does not handle the reporter well
// https://lists.launchpad.net/kicad-developers/msg32306.html
#ifndef __WXMAC__
m_progressReporter = aReporter;
#endif
}