mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Fixed "Safe Mode" crash
This commit is contained in:
parent
fa7638621d
commit
90065d64c8
1 changed files with 1 additions and 1 deletions
|
@ -355,7 +355,7 @@ namespace IDE.ui
|
|||
}
|
||||
|
||||
let compiler = gApp.mBfResolveCompiler;
|
||||
if ((mNeedsResolveAll) && (!compiler.IsPerformingBackgroundOperation()))
|
||||
if ((mNeedsResolveAll) && (compiler != null) && (!compiler.IsPerformingBackgroundOperation()))
|
||||
{
|
||||
if (compiler.mResolveAllWait == 0)
|
||||
compiler.QueueDeferredResolveAll();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue