1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-11 21:04:10 +02:00

Fixed save buffers during symbol rename

This commit is contained in:
Brian Fiete 2020-11-08 07:45:37 -08:00
parent a9d9776bcb
commit 330eb037e8
4 changed files with 41 additions and 9 deletions

View file

@ -12762,6 +12762,9 @@ namespace IDE
mLastFileChangeId = mFileWatcher.mChangeId;
}
if (mSymbolReferenceHelper?.mKind == .Rename)
return;
var app = gApp;
Debug.Assert(app != null);
@ -13138,6 +13141,9 @@ namespace IDE
void VerifyModifiedBuffers()
{
if (mSymbolReferenceHelper?.mKind == .Rename)
return;
mWorkspace.WithProjectItems(scope (projectItem) =>
{
var projectSource = projectItem as ProjectSource;