From 88a58803ca769f04029af2077bed79bd67ba8e8f Mon Sep 17 00:00:00 2001
From: Seth Hillbrand <seth@kipro-pcb.com>
Date: Mon, 31 Jan 2022 15:57:14 -0800
Subject: [PATCH] Revert "Mark unbundled mac apps as unsupported"

This reverts commit 68a0b998354eef03242f03450ae6b6a1fe15f3e1.

Reverted as unbundled Mac apps patch breaks kicad-mac-builder
---
 libs/kiplatform/osx/app.mm | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/libs/kiplatform/osx/app.mm b/libs/kiplatform/osx/app.mm
index 1931ad8d0b..8feb4794bd 100644
--- a/libs/kiplatform/osx/app.mm
+++ b/libs/kiplatform/osx/app.mm
@@ -32,13 +32,8 @@ bool KIPLATFORM::APP::Init()
 
 bool KIPLATFORM::APP::IsOperatingSystemUnsupported()
 {
-    // We only support bundled applications.  Purposefully unbundling may introduce
-    // issues that we cannot support
-#ifdef __MACOSX_APP__
+    // Not implemented on this platform
     return false;
-#else
-    return true;
-#endif
 }