Hi all,

I'm having an issue with rendering a small border-image on Windows only using Qt 4.8.1, it renders properly on all other OSes, and I'm wondering if there's something I'm missing.

See attached images, the Windows one has vertical lines through it that look quite bad, but the OSX one looks perfect.

windows.pngScreen Shot 2013-03-13 at 11.09.15 AM.png
The images aren't scaled at all, they are 13x13px PNGs, and here is my QSS code:

Qt Code:
  1.  
  2. border-image: url(img/led-blue-off.png);
  3. border: 0px transparent;
  4. min-height: 13px;
  5. max-height: 13px;
  6. min-width: 13px;
  7. max-width: 13px;
  8. }
To copy to clipboard, switch view to plain text mode 

I've tried numerous options for border-image, with no real effect (other than distorting the image).

Any thoughts on how to resolve this? It's only a problem with these circular images, other images in the 15x15 to 13x20 range work perfectly.

TIA!