From 647aa115e8489531cbf4cd9f3150113f65ef856f Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Sun, 16 Feb 2020 13:11:14 +0100 Subject: [PATCH] restore broken auto indent --- src/u_dlang.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/u_dlang.pas b/src/u_dlang.pas index e8f95559..7da40ef8 100644 --- a/src/u_dlang.pas +++ b/src/u_dlang.pas @@ -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;