mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-17 07:44:09 +02:00
Fixes for ShowWrongHash, looking into debug info issues in opt llvm
This commit is contained in:
parent
c67fbd66ba
commit
54d5884213
8 changed files with 69 additions and 34 deletions
|
@ -6182,6 +6182,10 @@ namespace IDE
|
|||
sourceViewPanel.SetLoadCmd(loadCmd);
|
||||
}
|
||||
}
|
||||
else if ((hash != .None) && (hash != sourceViewPanel.mLoadedHash))
|
||||
{
|
||||
sourceViewPanel.ShowWrongHash();
|
||||
}
|
||||
|
||||
int showHotIdx = -1;
|
||||
if (!onlyShowCurrent)
|
||||
|
@ -11408,7 +11412,8 @@ namespace IDE
|
|||
continue;
|
||||
|
||||
//TODO: Check to see if this file is in the dependency list of the executing project
|
||||
mHaveSourcesChangedExternallySinceLastCompile = true;
|
||||
if (!editData.mProjectSources.IsEmpty)
|
||||
mHaveSourcesChangedExternallySinceLastCompile = true;
|
||||
editData.SetSavedData(null, IdSpan());
|
||||
|
||||
if (editData.mQueuedContent == null)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue