mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 20:42:21 +02:00
Fixed namespace colorization when outer type name matches namespace
This commit is contained in:
parent
8b74b15102
commit
38d2eff3f6
1 changed files with 1 additions and 1 deletions
|
@ -6996,7 +6996,7 @@ BfType* BfModule::ResolveTypeResult(BfTypeReference* typeRef, BfType* resolvedTy
|
|||
if ((isValid) && (mCompiler->mSystem->ContainsNamespace(leftComposite, mCurTypeInstance->mTypeDef->mProject)))
|
||||
isNamespace = true;
|
||||
}
|
||||
else if ((isValid) && (resolvedTypeInstance->mTypeDef->mNamespace.EndsWith(leftComposite)))
|
||||
else if ((isValid) && (resolvedTypeInstance->mTypeDef->mNamespace.EndsWith(leftComposite)) && (resolvedTypeInstance->mTypeDef->mOuterType == NULL))
|
||||
{
|
||||
if (autoComplete != NULL)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue