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

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

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

* commit 'fe6fd242':
  Mask out the non public bits, not the public ones.
parents 85ebed39 fe6fd242
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -10940,7 +10940,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);
        }
    }