From da31757fa776ffc6b4ba0b74c7e47b87739cd739 Mon Sep 17 00:00:00 2001 From: "LAPTOP-NV8MPI8C\\Yuvan Wickramasinghe" Date: Thu, 27 Mar 2025 17:16:26 -0700 Subject: [PATCH] Missed a couple places where custom build properties should be loaded. --- IDE/src/IDEApp.bf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/IDE/src/IDEApp.bf b/IDE/src/IDEApp.bf index 509480e9..149552c7 100644 --- a/IDE/src/IDEApp.bf +++ b/IDE/src/IDEApp.bf @@ -12831,12 +12831,14 @@ namespace IDE { mWorkspace.mName = new String(); Path.GetFileName(mWorkspace.mDir, mWorkspace.mName); + CustomBuildProperties.Load(); LoadWorkspace(mVerb); } else if (mWorkspace.IsSingleFileWorkspace) { mWorkspace.mName = new String(); Path.GetFileNameWithoutExtension(mWorkspace.mCompositeFile.mFilePath, mWorkspace.mName); + CustomBuildProperties.Load(); LoadWorkspace(mVerb); }