修复:目录换行位置计算错误

This commit is contained in:
csh 2024-08-08 11:40:12 +08:00
parent d687f45b3b
commit 9dc7a66b62
1 changed files with 3 additions and 3 deletions

View File

@ -178,11 +178,11 @@ begin
bottom := {self.}StartY;
end
else begin
{self.}EndY -= line_space;
{self.}DynamicHeight += line_space;
bottom -= line_space;
x := {self.}StartX;
y := {self.}EndY + offset;
y := {self.}EndY - offset;
{self.}EndY -= line_space;
{self.}DynamicHeight += line_space;
end
end
rect := array(left, bottom, right, top);