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

Make Parameter colorization fail over to Local color

This commit is contained in:
Brian Fiete 2024-12-02 07:41:35 -05:00
parent 2b9fa80b81
commit 03987ba8f5

View file

@ -375,8 +375,8 @@ namespace IDE
GetColor("Literal", ref mLiteral);
GetColor("Identifier", ref mIdentifier);
mLocal = mIdentifier;
mParameter = mIdentifier;
GetColor("Local", ref mLocal);
mParameter = mLocal;
GetColor("Parameter", ref mParameter);
mMember = mIdentifier;
GetColor("Member", ref mMember);