am ddd5aaaf: Merge "Perform null check in animation complete" into ub-now-porkchop
* commit 'ddd5aaaf354beb5add6bcc2560c4f975d49a9f6a': Perform null check in animation complete
This commit is contained in:
@@ -3632,9 +3632,11 @@ public class Launcher extends Activity
|
||||
}
|
||||
|
||||
// Reset page transforms
|
||||
page.setTranslationX(0);
|
||||
page.setTranslationY(0);
|
||||
page.setAlpha(1);
|
||||
if (page != null) {
|
||||
page.setTranslationX(0);
|
||||
page.setTranslationY(0);
|
||||
page.setAlpha(1);
|
||||
}
|
||||
content.setCurrentPage(content.getNextPage());
|
||||
|
||||
mAppsCustomizeContent.updateCurrentPageScroll();
|
||||
|
||||
Reference in New Issue
Block a user