We have fixed above methode:
case FOwner.TabPosition of
etpLeft:
dec(R.Right, 1);
etpRight:
inc(R.Left, 1);
etpTop:
dec(R.Bottom, 1);
etpBottom:
inc(R.Bottom, 1);
end;
changed to
if (not StyleServices.Enabled) then
case FOwner.TabPosition of
etpLeft:
dec(R.Right, 1);
etpRight:
inc(R.Left, 1);
etpTop:
dec(R.Bottom, 1);
etpBottom:
inc(R.Bottom, 1);
end;
Please check if this is ok.
Works for us to avoid cutted to avoid cut of sublime of text
Comments