mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-26 19:48:01 +02:00
Safe mode fixes
This commit is contained in:
parent
69fbaf670d
commit
0ee3259eb1
1 changed files with 9 additions and 0 deletions
|
@ -153,6 +153,9 @@ namespace IDE.ui
|
||||||
if (!mAwaitingGetSymbolInfo)
|
if (!mAwaitingGetSymbolInfo)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
|
if (gApp.mBfResolveCompiler == null)
|
||||||
|
return false;
|
||||||
|
|
||||||
if (gApp.mBfResolveCompiler.IsPerformingBackgroundOperationHi())
|
if (gApp.mBfResolveCompiler.IsPerformingBackgroundOperationHi())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
@ -850,6 +853,12 @@ namespace IDE.ui
|
||||||
{
|
{
|
||||||
base.Update();
|
base.Update();
|
||||||
|
|
||||||
|
if (gApp.mBfResolveCompiler == null)
|
||||||
|
{
|
||||||
|
Close();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if ((mUpdatingProjectSources == null) && (mUpdateCnt > 30) && (gApp.mUpdateCnt % 4 == 0))
|
if ((mUpdatingProjectSources == null) && (mUpdateCnt > 30) && (gApp.mUpdateCnt % 4 == 0))
|
||||||
MarkDirty();
|
MarkDirty();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue