1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-18 16:10:26 +02:00

Fix BeefBuild

This commit is contained in:
Brian Fiete 2022-07-12 06:06:10 -04:00
parent 4c2530e227
commit 8b1d5efa96
2 changed files with 4 additions and 0 deletions

View file

@ -6039,6 +6039,7 @@ namespace IDE.ui
} }
} }
#if !CLI
if ((mCollapseAwaitingDB) && (mSourceViewPanel != null)) if ((mCollapseAwaitingDB) && (mSourceViewPanel != null))
{ {
String filePath = scope .(mSourceViewPanel.mFilePath); String filePath = scope .(mSourceViewPanel.mFilePath);
@ -6082,6 +6083,7 @@ namespace IDE.ui
mCollapseAwaitingDB = false; mCollapseAwaitingDB = false;
} }
#endif
//Debug.WriteLine($"ParseCollapseRegions Count:{mOrderedCollapseEntries.Count} Time:{sw.ElapsedMilliseconds}ms"); //Debug.WriteLine($"ParseCollapseRegions Count:{mOrderedCollapseEntries.Count} Time:{sw.ElapsedMilliseconds}ms");
} }

View file

@ -6952,6 +6952,7 @@ namespace IDE.ui
// Process after mQueuedCollapseData so mCharIdSpan is still valid // Process after mQueuedCollapseData so mCharIdSpan is still valid
ProcessDeferredResolveResults(0); ProcessDeferredResolveResults(0);
#if !CLI
if (ewc.mCollapseDBDirty) if (ewc.mCollapseDBDirty)
{ {
MemoryStream memStream = scope .(); MemoryStream memStream = scope .();
@ -6981,6 +6982,7 @@ namespace IDE.ui
gApp.mFileRecovery.SetDB(filePath, memStream.Memory); gApp.mFileRecovery.SetDB(filePath, memStream.Memory);
ewc.mCollapseDBDirty = false; ewc.mCollapseDBDirty = false;
} }
#endif
} }
public override void UpdateF(float updatePct) public override void UpdateF(float updatePct)