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:
parent
a9d9776bcb
commit
330eb037e8
4 changed files with 41 additions and 9 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue