VCL style issue

If you select that VCL style should not be followed, the selection color (font+selection) from VCL style is still used.
It would be nice if you could set specify selection+font color independent of VCL style (for example by setting a property)
Problem is in TAdvCustomSearchList.InitVCLStyle(init: boolean);
The following lines does not seem to work correctl (if they are commented out, the colors specified are used):
if LStyle.GetElementColor(LStyle.GetElementDetails(teEditTextSelected), ecFilLColor, clr) and (clr <> clNone) then
begin
Appearance.SelectionColor := clr;
end
else
Appearance.SelectionColor := clHighlight;

if LStyle.GetElementColor(LStyle.GetElementDetails(teEditTextSelected), ecTextColor, clr) and (clr <> clNone) then
begin
  Appearance.SelectionTextColor := clr;
end
else
  Appearance.SelectionTextColor := clHighlightText;

This has been fixed.

This feature was implemented.