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

Commit 692844e1 authored by Adrian Roos's avatar Adrian Roos
Browse files

Fix typo that treated fullscreen as transparent

Bug: 23125529
Change-Id: I5ad8bfbf10d78ecc794d510957564a694829ddff
parent 0dfba047
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -258,7 +258,7 @@ public class BarController {
            vis &= ~View.SYSTEM_UI_FLAG_LOW_PROFILE;  // never show transient bars in low profile
        }
        if ((vis & mTranslucentFlag) != 0 || (oldVis & mTranslucentFlag) != 0 ||
                ((vis | oldVis) & View.SYSTEM_UI_FLAG_FULLSCREEN) != 0) {
                ((vis | oldVis) & View.SYSTEM_UI_TRANSPARENT) != 0) {
            mLastTranslucent = SystemClock.uptimeMillis();
        }
        return vis;