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

Commit 401b3ebf authored by Adrian Roos's avatar Adrian Roos Committed by The Android Automerger
Browse files

Fix typo causing immersive mode transition flickering.

Bug: 15095056
Change-Id: Ibc75bb4f61070f4cf00756ab1a216255e38932af
parent 965acbd8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -121,7 +121,7 @@ public class BarController {
                }
            } else {
                vis = (vis & ~mTranslucentFlag) | (oldVis & mTranslucentFlag);
                vis = (vis & View.SYSTEM_UI_TRANSPARENT) | (oldVis & View.SYSTEM_UI_TRANSPARENT);
                vis = (vis & ~View.SYSTEM_UI_TRANSPARENT) | (oldVis & View.SYSTEM_UI_TRANSPARENT);
            }
        }
        return vis;