I’ve got some buttons that use a high resolution image. On an iPad Mini, these button images are being scaled down (though the text of the buttons remains the correct size).
According to http://docs.coronalabs.com/api/library/display/newImage.html#TOC you can set the “isFullResolution” flag on images to stop this problem. Is there an equivalent method for fixing this with buttons?
Edit: My solution is to first load the asset as an image, with isFullResolution set to true, and alpha set to zero. Then buttons will work properly. It’s kind of a hacky workaround though.