restore broken auto indent

This commit is contained in:
Basile Burg 2020-02-16 13:11:14 +01:00
parent 4a616f287e
commit 647aa115e8
1 changed files with 2 additions and 2 deletions

View File

@ -1023,8 +1023,8 @@ begin
y := caretPos.y;
if t^.position.y > y then
continue;
if ((t^.position.y = y) and (t^.position.x <= x)) then
//or (t^.position.y < y) then
if ((t^.position.y = y) and (t^.position.x <= x))
or (t^.position.y < y) then
begin
result := i;
break;