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:
parent
cbe8872417
commit
cc75c3bd16
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
|
@ -520,7 +520,7 @@ namespace IDE.ui
|
|||
}
|
||||
}
|
||||
|
||||
ProjectSource FilteredProjectSource
|
||||
public ProjectSource FilteredProjectSource
|
||||
{
|
||||
get
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue