Bug introduced in V10.4 and fixed in 10.4.1
Suppose we have the following array from which we intend to create an ArrayMesh:
arr = {{{1, 1, 1}, {1, 0, 1}, {1, 1, 0}}, {{1, 1, 1}, {0, 1, 1}, {1, 1,
0}}, {{0, 1, 0}, {0, 1, 1}, {0, 0, 1}}};
If we create the ArrayMesh and use one of the styling Options in this case MeshCellStyle, the color is not evenly applied:
ArrayMesh[arr, MeshCellStyle -> {{2, All} -> Yellow}]

And as you manipulate this mesh object it flickers like crazy:
This does not happen if you use HighlightMesh to style it:
HighlightMesh[ArrayMesh[arr], {Style[2, Yellow]}]
.
Can anyone reproduce this behavior. Note that ArrayMesh is new in 10.4. I'm using Windows 10 64bit
