I’m using VAX, I don’t use intellisense and keep it disabled. In 4.12 this is not an issue, it occurs in 4.13 only.
When I start to type EMyEnum::
in 4.12 and prior it would come up with EMyEnum::ME_SomeOption
whereas in 4.13 it only ever shows EMyEnum::UMETA
.
It’s under bug reports because it doesn’t look like something that should happen and I can’t find anything in google.
Here is one of my many enums that has the issue in 4.13 and not in 4.12. If I change UMETA to anything else it shows that instead. If I remove the UMETA altogether and only have the RT_None,
then it displays correctly.
UENUM(BlueprintType)
enum class EReactionType : uint8
{
RT_None UMETA(DisplayName = "None"),
RT_Minor UMETA(DisplayName = "Minor"),
RT_Curious UMETA(DisplayName = "Curious"),
RT_Suspicious UMETA(DisplayName = "Suspicious"),
RT_Hostile UMETA(DisplayName = "Hostile"),
};