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

Commit 1136ddeb authored by Merissa Mitchell's avatar Merissa Mitchell Committed by Android (Google) Code Review
Browse files

Merge "[WindowDecor] Add null check for AppHeaderViewHolder" into main

parents 136c8438 f5b7d8b8
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -2031,7 +2031,10 @@ public class DesktopModeWindowDecoration extends WindowDecoration<WindowDecorLin
     */
    @Override
    public void onMaximizeButtonHoverExit() {
        asAppHeader(mWindowDecorViewHolder).onMaximizeWindowHoverExit();
        final AppHeaderViewHolder appHeader = asAppHeader(mWindowDecorViewHolder);
        if (appHeader != null) {
            appHeader.onMaximizeWindowHoverExit();
        }
    }

    /**