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

Commit b4e28848 authored by Joe Onorato's avatar Joe Onorato Committed by Android Git Automerger
Browse files

am 19a02219: am fe6fd242: Merge "Mask out the non public bits, not the public ones." into honeycomb

* commit '19a02219':
  Mask out the non public bits, not the public ones.
parents 6d54ec7e 19a02219
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -10983,7 +10983,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, Accessibility
    public void dispatchSystemUiVisibilityChanged(int visibility) {
        if (mOnSystemUiVisibilityChangeListener != null) {
            mOnSystemUiVisibilityChangeListener.onSystemUiVisibilityChange(
                    visibility & ~PUBLIC_STATUS_BAR_VISIBILITY_MASK);
                    visibility & PUBLIC_STATUS_BAR_VISIBILITY_MASK);
        }
    }