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:
parent
fafd6a7550
commit
2ff7f208c3
2 changed files with 3 additions and 1 deletions
|
@ -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)
|
||||
|
|
|
@ -1359,6 +1359,7 @@ namespace IDE
|
|||
#endif
|
||||
if (result == 3) // Abort
|
||||
{
|
||||
gApp.mStopPending = true;
|
||||
mSettingsValid = false;
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue