Workaround for OSX freeze when filling zones in GAL
More details: https://lists.launchpad.net/kicad-developers/msg32306.html
This commit is contained in:
parent
5572183c22
commit
f19aed9d5c
|
@ -85,7 +85,11 @@ ZONE_FILLER::~ZONE_FILLER()
|
||||||
|
|
||||||
void ZONE_FILLER::SetProgressReporter( PROGRESS_REPORTER* aReporter )
|
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;
|
m_progressReporter = aReporter;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue