1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

Fixed incorrect test script interaction with settings load failure

This commit is contained in:
Brian Fiete 2025-06-02 08:44:00 +02:00
parent fafd6a7550
commit 2ff7f208c3
2 changed files with 3 additions and 1 deletions

View file

@ -169,6 +169,7 @@ namespace IDE
public bool mDbgDelayedAutocomplete; public bool mDbgDelayedAutocomplete;
public bool mDbgTimeAutocomplete; public bool mDbgTimeAutocomplete;
public bool mDbgPerfAutocomplete; public bool mDbgPerfAutocomplete;
public bool mStopPending;
public BeefConfig mBeefConfig = new BeefConfig() ~ delete _; public BeefConfig mBeefConfig = new BeefConfig() ~ delete _;
public List<String> mDeferredFails = new .() ~ DeleteContainerAndItems!(_); public List<String> mDeferredFails = new .() ~ DeleteContainerAndItems!(_);
public String mInitialCWD = new .() ~ delete _; public String mInitialCWD = new .() ~ delete _;
@ -15171,7 +15172,7 @@ namespace IDE
if (mUpdateCnt % 120 == 0) if (mUpdateCnt % 120 == 0)
VerifyModifiedBuffers(); VerifyModifiedBuffers();
if (!mSettings.mSettingsValid) if (mStopPending)
Stop(); Stop();
if (mWantShowOutput) if (mWantShowOutput)

View file

@ -1359,6 +1359,7 @@ namespace IDE
#endif #endif
if (result == 3) // Abort if (result == 3) // Abort
{ {
gApp.mStopPending = true;
mSettingsValid = false; mSettingsValid = false;
return; return;
} }