Just a mistake!
To fix this, insert the following line on line 326 in the PngBitBtn.pas TPngBitBtnStyleHook.DrawButton method:
Offset := TPoint.Create(0, 0);
The code in this area should now look like this:
if not (Control is TPngBitBtn) then begin inherited; Exit; end; Offset := TPoint.Create(0, 0); DrawRect := Control.ClientRect;
source share