I think in Vcl.Styles.Hooks:
function InterceptDrawEdge(hDC: hDC; var qrc: TRect; edge: UINT; grfFlags:
UINT): BOOL; stdcall;
is missing an "not TSysStyleManager.Enabled".
The current code in Line 77 is:
CanDraw := (not StyleServices.IsSystemStyle) or (TSysStyleManager.Enabled);
My suggestion is:
CanDraw := (not StyleServices.IsSystemStyle) or (not TSysStyleManager.Enabled);
Original issue reported on code.google.com by sven.ter...@d-velop.de on 10 Apr 2015 at 2:41
Original issue reported on code.google.com by
sven.ter...@d-velop.de
on 10 Apr 2015 at 2:41