mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 20:12:21 +02:00
Fixed namespace colorization when type name matches namespace
This commit is contained in:
parent
8b4b014a6a
commit
dbe38df60f
1 changed files with 1 additions and 1 deletions
|
@ -6976,7 +6976,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->mOuterType == NULL) && (resolvedTypeInstance->mTypeDef->mNamespace.EndsWith(leftComposite)))
|
||||
{
|
||||
if (autoComplete != NULL)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue