Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 90f9f957 authored by Adam Cohen's avatar Adam Cohen Committed by Android Git Automerger
Browse files

am 83e5941d: Fix NPE in Workspace

* commit '83e5941d':
  Fix NPE in Workspace
parents 3fcb2c75 83e5941d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1107,7 +1107,7 @@ public class Workspace extends SmoothPagedView
        case MotionEvent.ACTION_UP:
            if (mTouchState == TOUCH_STATE_REST) {
                final CellLayout currentPage = (CellLayout) getChildAt(mCurrentPage);
                if (!currentPage.lastDownOnOccupiedCell()) {
                if (currentPage != null && !currentPage.lastDownOnOccupiedCell()) {
                    onWallpaperTap(ev);
                }
            }