TCustomTabControl: don't check for parent in call to FindNextControl in ActivateFirstControlOnPage. Part of issue #40775.

This commit is contained in:
Bart 2024-02-25 13:25:14 +01:00
parent 641a76447b
commit 5e54b2f921

View File

@ -783,7 +783,7 @@ begin
//don't steal focus if a control outside is ActiveControl
if (Self = ActiveControl) or Self.ContainsControl(ActiveControl) then
begin
C := APage.FindNextControl(Self, True, True, True);
C := APage.FindNextControl(Self, True, True, False);
if Assigned(C) then
ParentForm.ActiveControl := C;
end;