Mark unbundled mac apps as unsupported

We do no track all the various possible issues arising from using
unbundled Mac apps.  Users may choose to use KiCad this way but issues
must be recreated on a supported configuration
This commit is contained in:
Seth Hillbrand 2022-01-27 09:10:10 -08:00
parent ea9f960cc1
commit 68a0b99835
1 changed files with 6 additions and 1 deletions

View File

@ -32,8 +32,13 @@ bool KIPLATFORM::APP::Init()
bool KIPLATFORM::APP::IsOperatingSystemUnsupported()
{
// Not implemented on this platform
// We only support bundled applications. Purposefully unbundling may introduce
// issues that we cannot support
#ifdef __MACOSX_APP__
return false;
#else
return true;
#endif
}