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

Commit 5797f192 authored by Joe Onorato's avatar Joe Onorato
Browse files

Check if this is null.

Change-Id: Ia74babdd1b1d76a2e5965db66bb995ea659dc6c1
parent af5e4da2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -132,7 +132,7 @@ public class TabletTicker extends Handler {

        // if there's nothing left, close the window
        // TODO: Do this when the animation is done instead
        if (mCurrentView == null) {
        if (mCurrentView == null && mWindow != null) {
            WindowManagerImpl.getDefault().removeView(mWindow);
            mWindow = null;
        }