Skip to content

Tile: Calculate children-of-children in teh childCount

Aleix Pol Gonzalez requested to merge work/apol/fix-nested-tiling-count into master

Otherwise we count a tile that has sub-tiles as 1, which would make handleInteractiveMoveResize think there are no areas when there are.

BUG: 464379


@mart note this is because it's stored as:

tiles={"layoutDirection":"horizontal","tiles":[{"layoutDirection":"vertical","tiles":[{"height":0.5},{"height":0.5}],"width":1}]}

it should probably be:

tiles={"layoutDirection":"vertical","tiles":[{"height":0.5},{"height":0.5}],"width":1}

Merge request reports