We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab0d82e commit 35ea8fbCopy full SHA for 35ea8fb
Source/Alcinoe.FMX.Layouts.pas
@@ -530,7 +530,7 @@ function TALScrollBoxContent.IsVisibleObject(const AObject: TControl): Boolean;
530
if AObject.Visible then begin
531
Result := (AObject.Position.Y < -Position.Y + FscrollBox.Height) and
532
(AObject.Position.Y + AObject.Height > -Position.Y) and
533
- (AObject.Position.X < Position.X + FscrollBox.Width) and
+ (AObject.Position.X < -Position.X + FscrollBox.Width) and
534
(AObject.Position.X + AObject.Width > Position.X);
535
end
536
else
0 commit comments