Bitmap Mask scale with displayGroup

Heya,

I’d like to request that Bitmap Masks scale with the parent display group, in the same way that an attached image will be scaled when the scale on the parent’s display group is set.

My test case would be that in the example below, both img and mask are scaled equally by the operations on the group, so that an equal proportion of the image is masked before and after the operations.

local mask=graphics.newMask("mask.png")  
local img=display.newImage("img.png")  
img:setMask(mask)  
  
local group=display.newGroup()  
group:insert(img)  
  
group.xScale=0.5  
group:scale(4,4)  

[import]uid: 11757 topic_id: 10525 reply_id: 310525[/import]