BUG: gradient in SVG not displayed correctly when shape is transformed

SVG;

<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64">
  <defs>
    <linearGradient id="lineargradient-a" x1="90.855%" x2="10.56%" y1="54.228%" y2="54.228%">
      <stop offset="0%" stop-color="#00FF35"/>
      <stop offset="23.183%" stop-color="#3D00F6"/>
      <stop offset="79.058%" stop-color="#5600F0"/>
      <stop offset="100%" stop-color="#FF00CA"/>
    </linearGradient>
  </defs>
  <rect width="640" height="640" fill="url(#lineargradient-a)" fill-rule="evenodd" transform="scale(0.1 0.1)"/>
</svg>

what chrome displays:
image

What the Projucer Shows:
image

This is v5.3.2 of the projucer.

4d4fd5e should fix it.

2 Likes

Thanks so much guys. This is much appreciated.

Thanks a lot.