Fix bug where labels were visible in hotseat / invisible in workspace.

Bug: 67364623
Change-Id: Ib66a5cdaca767fd8546f4ffd02d590981bb8135a
This commit is contained in:
Jon Miranda
2017-10-04 11:23:33 -07:00
parent 0cab65a5b6
commit f1eae802b5

View File

@@ -606,7 +606,7 @@ public class CellLayout extends ViewGroup implements BubbleTextShadowHandler {
// Hotseat icons - remove text
if (child instanceof BubbleTextView) {
BubbleTextView bubbleChild = (BubbleTextView) child;
bubbleChild.setTextVisibility(bubbleChild.shouldTextBeVisible());
bubbleChild.setTextVisibility(mContainerType != HOTSEAT);
}
child.setScaleX(mChildScale);