mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 11:18:10 +02:00
SynEdit/Cocoa: UTF8CodepointCount() used instead of UTF8Length()
This commit is contained in:
parent
c8a1f93a6e
commit
9297084337
@ -189,7 +189,7 @@ begin
|
||||
if (lineText.length>0) and (logicalPoint.x<=lineText.length+1) then begin
|
||||
if logicalPoint.x > lineText.length then
|
||||
logicalPoint.x:= lineText.length;
|
||||
params.col:= UTF8Length( pchar(lineText), logicalPoint.x ) - 1;
|
||||
params.col:= UTF8CodepointCount( pchar(lineText), logicalPoint.x ) - 1;
|
||||
end else begin
|
||||
params.col:= -1;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user