Merge "Fix NPE if workspace is not created yet" into jb-ub-now-indigo-rose

This commit is contained in:
Dave Hawkey 2013-10-01 22:56:46 +00:00 committed by Android (Google) Code Review
commit c6be6eec28
1 changed files with 1 additions and 1 deletions

View File

@ -497,7 +497,7 @@ public class Launcher extends Activity
* ensure the custom content page is added or removed if necessary.
*/
protected void invalidateHasCustomContentToLeft() {
if (mWorkspace.getScreenOrder().isEmpty()) {
if (mWorkspace == null || mWorkspace.getScreenOrder().isEmpty()) {
// Not bound yet, wait for bindScreens to be called.
return;
}