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

Commit 9529d8f2 authored by Adam Powell's avatar Adam Powell Committed by Android (Google) Code Review
Browse files

Merge "Fix a bug in querying showing state for action bars"

parents 774d4a6c c4b416f1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -576,7 +576,7 @@ public class ActionBarOverlayLayout extends ViewGroup {
    }

    public int getActionBarHideOffset() {
        return -((int) mActionBarTop.getTranslationY());
        return mActionBarTop != null ? -((int) mActionBarTop.getTranslationY()) : 0;
    }

    public void setActionBarHideOffset(int offset) {