mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-26 11:38:02 +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)
|
||||
return true;
|
||||
|
||||
if (gApp.mBfResolveCompiler == null)
|
||||
return false;
|
||||
|
||||
if (gApp.mBfResolveCompiler.IsPerformingBackgroundOperationHi())
|
||||
return false;
|
||||
|
||||
|
@ -850,6 +853,12 @@ namespace IDE.ui
|
|||
{
|
||||
base.Update();
|
||||
|
||||
if (gApp.mBfResolveCompiler == null)
|
||||
{
|
||||
Close();
|
||||
return;
|
||||
}
|
||||
|
||||
if ((mUpdatingProjectSources == null) && (mUpdateCnt > 30) && (gApp.mUpdateCnt % 4 == 0))
|
||||
MarkDirty();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue