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

Commit fe6fd242 authored by Joe Onorato's avatar Joe Onorato Committed by Android (Google) Code Review
Browse files

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

parents ccfcd9e8 6ab77bd5
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);
        }
    }