LazUtils: only transform relevant alphabet characters in LazUTF16.UnicodeLowercase function, issue

This commit is contained in:
Maxim Ganetsky 2024-08-07 00:37:10 +03:00
parent f05736ba41
commit 6e4a0dd2ae

View File

@ -1009,7 +1009,7 @@ begin
InitUnicodeTables; // Initialize only when needed.
if u<$00C0 then begin
// most common
if (u>=$0041) and (u<=$0061) then
if (u>=$0041) and (u<=$005A) then
Result:=u+32
else
Result:=u;