1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Fixed right-click crash in file from disabled project

This commit is contained in:
Brian Fiete 2021-07-31 10:27:23 -07:00
parent cbe8872417
commit cc75c3bd16
2 changed files with 2 additions and 2 deletions

View file

@ -3818,7 +3818,7 @@ namespace IDE.ui
});
// Fixits
if ((mSourceViewPanel.mIsBeefSource) && (mSourceViewPanel.mProjectSource != null) && (gApp.mSymbolReferenceHelper?.IsLocked != true))
if ((mSourceViewPanel.mIsBeefSource) && (mSourceViewPanel.FilteredProjectSource != null) && (gApp.mSymbolReferenceHelper?.IsLocked != true))
{
ResolveParams resolveParams = scope .();
mSourceViewPanel.DoClassify(ResolveType.GetFixits, resolveParams, true);

View file

@ -520,7 +520,7 @@ namespace IDE.ui
}
}
ProjectSource FilteredProjectSource
public ProjectSource FilteredProjectSource
{
get
{