the value for TabStop no longer depends on CanTab method. It's now purely up to the LCL control to regarding TabStop default value

git-svn-id: branches/macosfullkeyboardaccess@62721 -
This commit is contained in:
dmitry 2020-03-08 22:49:34 +00:00
parent 0ef7355796
commit 0b13418dc4

View File

@ -6168,10 +6168,6 @@ begin
if AControl is TWinControl then
begin
ListAdd(FTabList, AControl);
if (csDesigning in ComponentState) and (not (csLoading in ComponentState))
and AControl.CanTab then
TWinControl(AControl).TabStop := true;
end;
AControl.FParent := Self;