1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +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 mDbgTimeAutocomplete;
public bool mDbgPerfAutocomplete;
public bool mStopPending;
public BeefConfig mBeefConfig = new BeefConfig() ~ delete _;
public List<String> mDeferredFails = new .() ~ DeleteContainerAndItems!(_);
public String mInitialCWD = new .() ~ delete _;
@ -15171,7 +15172,7 @@ namespace IDE
if (mUpdateCnt % 120 == 0)
VerifyModifiedBuffers();
if (!mSettings.mSettingsValid)
if (mStopPending)
Stop();
if (mWantShowOutput)

View file

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