mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 23:38:02 +02:00
IDE: EditorOptions - Colors, remove some left over "UpperCase". Data is actually stored mixed case.
This commit is contained in:
parent
9d4a82b1dc
commit
844ce18504
@ -6942,7 +6942,7 @@ begin
|
||||
for i := 0 to Src.AttributeCount - 1 do begin
|
||||
SrcAttr := Src.AttributeAtPos[i];
|
||||
// Reuse existing Attribute if possible.
|
||||
j := FAttributes.IndexOf(UpperCase(SrcAttr.StoredName));
|
||||
j := FAttributes.IndexOf(SrcAttr.StoredName);
|
||||
if j >= 0 then begin
|
||||
Attr := TColorSchemeAttribute(FAttributes.Objects[j]);
|
||||
DebugLn([' Use existing attr ', Attr.StoredName]);
|
||||
@ -6952,7 +6952,7 @@ begin
|
||||
Attr := TColorSchemeAttribute.Create(Self, SrcAttr.Caption, SrcAttr.StoredName);
|
||||
end;
|
||||
Attr.Assign(SrcAttr);
|
||||
NewList.AddObject(UpperCase(Attr.StoredName), Attr);
|
||||
NewList.AddObject(Attr.StoredName, Attr);
|
||||
if SrcAttr = Src.DefaultAttribute then
|
||||
FDefaultAttribute := Attr;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user