am d69e1138: Fix 4093841: Launcher crash after downloading app & hitting back
* commit 'd69e11384c9eefe49039b198edcece5d59c8868f': Fix 4093841: Launcher crash after downloading app & hitting back
This commit is contained in:
@@ -264,8 +264,10 @@ public class BubbleTextView extends TextView implements VisibilityChangedBroadca
|
|||||||
|
|
||||||
void setCellLayoutPressedOrFocusedIcon() {
|
void setCellLayoutPressedOrFocusedIcon() {
|
||||||
CellLayoutChildren parent = (CellLayoutChildren) getParent();
|
CellLayoutChildren parent = (CellLayoutChildren) getParent();
|
||||||
CellLayout cellLayout = (CellLayout) parent.getParent();
|
if (parent != null) {
|
||||||
cellLayout.setPressedOrFocusedIcon((mPressedOrFocusedBackground != null) ? this : null);
|
CellLayout layout = (CellLayout) parent.getParent();
|
||||||
|
layout.setPressedOrFocusedIcon((mPressedOrFocusedBackground != null) ? this : null);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Bitmap getPressedOrFocusedBackground() {
|
Bitmap getPressedOrFocusedBackground() {
|
||||||
|
|||||||
Reference in New Issue
Block a user