Revert "Mark unbundled mac apps as unsupported"

This reverts commit 68a0b998354eef03242f03450ae6b6a1fe15f3e1.

Reverted as unbundled Mac apps patch breaks kicad-mac-builder
This commit is contained in:
Seth Hillbrand 2022-01-31 15:57:14 -08:00
parent f3cd36d1d7
commit 88a58803ca

View File

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