Small issue with png images

Hello,


I have an ImageList with some png images and an ActionManager that uses the images from the ImageList. If I assign an action to a AdvGlowButton on a TAdvToolbar the image is displayed correctly but in the quick access toolbar the same action does not display the image correctly, it looks like the transparency is lost? You can see this here https://www.dropbox.com/s/0skpzstrg1x7c9d/Screenshot%202014-06-27%2012.18.png

Regards

Please use a bitmap for this. The QAT is displayed on a glass caption and it is very tricky to draw something on this glass area. The Windows API has methods to properly draw a bitmap on this glass area but not something to directly deal with PNG images (that is why internally, we first need to convert the PNG to a BMP)

Thank you very much for your reply, I will do as instructed