Display group insertion issues starting with build 2863

Hello,

There seems to be an issue starting with build 2863 regarding inserting display objects into groups. I’ve attached a sample code snippet to demonstrate the problem.

The code below renders a green background, red navigation bar and a table view. On build 2863 onward, you will notice that there is no red navigation bar. However, if you run the same code on build 2862, it renders fine.

Simply copy the code in a main.lua to test for yourself.
 

widget = require("widget") local group = display.newGroup() local background = display.newRect(0, 0, display.contentWidth, display.contentHeight) background.anchorX, background.anchorY = 0, 0 background.fill = {0, 1, 0} local nav\_bar = display.newRect(0, 0, display.contentWidth, 60) nav\_bar.anchorX, nav\_bar.anchorY = 0, 0 nav\_bar.fill = {1, 0, 0} local table\_view = widget.newTableView { left = 0, top = nav\_bar.contentBounds.yMax, width = display.contentWidth, height = display.contentHeight - nav\_bar.height, horizontalScrollDisabled = true, backgroundColor = {0.5, 0.5, 0.5} } for i=1, 10 do table\_view:insertRow({}) end group:insert(background) group:insert(table\_view) group:insert(nav\_bar)

Best,
Shehab

MASKS in build 2863 and up are broken

I just noticed an issue with any group that is assigned a mask (This includes ui elements like scrollviews).  The masks now mask graphics outside their assigned group, completely messing up my game.

This seems to have occurred because of this bug fix 

Core: fixed masks and containers minor batching/rendering problem (casenum 45604)

This bug relates to my fixing request in this post a few days ago:

https://forums.coronalabs.com/topic/62508-overlapping-containers-graphic-bug/

Didn’t thought my request would lead to such substantial other problems O.o

Have you submitted a bug report yet?  That’s the best way to get this resolved

As stated by Rob at the end of my other post, this should be fixed in the next daily build.

https://forums.coronalabs.com/topic/62508-overlapping-containers-graphic-bug/

This has indeed been fixed. Thanks for the quick handling.

MASKS in build 2863 and up are broken

I just noticed an issue with any group that is assigned a mask (This includes ui elements like scrollviews).  The masks now mask graphics outside their assigned group, completely messing up my game.

This seems to have occurred because of this bug fix 

Core: fixed masks and containers minor batching/rendering problem (casenum 45604)

This bug relates to my fixing request in this post a few days ago:

https://forums.coronalabs.com/topic/62508-overlapping-containers-graphic-bug/

Didn’t thought my request would lead to such substantial other problems O.o

Have you submitted a bug report yet?  That’s the best way to get this resolved

As stated by Rob at the end of my other post, this should be fixed in the next daily build.

https://forums.coronalabs.com/topic/62508-overlapping-containers-graphic-bug/

This has indeed been fixed. Thanks for the quick handling.