mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 18:58:19 +00:00
Fix two crashes
- NPE: bug #4984219 - IllegalStateException: bug #4969695 Change-Id: Iaf02e669b26f9277388e0e7bffd532220ebf9bb1
This commit is contained in:
@@ -207,7 +207,10 @@ public class AppsCustomizeTabHost extends TabHost implements LauncherTransitiona
|
||||
/* LauncherTransitionable overrides */
|
||||
@Override
|
||||
public void onLauncherTransitionStart(Animator animation) {
|
||||
if (animation != null) {
|
||||
// isHardwareAccelerated() checks if we're attached to a window and if that
|
||||
// window is HW accelerated-- we were sometimes not attached to a window
|
||||
// and buildLayer was throwing an IllegalStateException
|
||||
if (animation != null && isHardwareAccelerated()) {
|
||||
// Turn on hardware layers for performance
|
||||
setLayerType(LAYER_TYPE_HARDWARE, null);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user