Skip to content

Commit

Permalink
[DNM] disable top shadow on statusbar
Browse files Browse the repository at this point in the history
* looks horrible on oled, but could not find any commit making it optional for A10 trebuchet.
  • Loading branch information
SirRGB committed May 24, 2023
1 parent 6777083 commit 4f319d9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ private void reapplySysUiAlpha() {
}

private void reapplySysUiAlphaNoInvalidate() {
float factor = mSysUiProgress * mSysUiAnimMultiplier;
float factor = 0.0f;
mBottomMaskPaint.setAlpha(Math.round(MAX_HOTSEAT_SCRIM_ALPHA * factor));
if (mTopScrim != null) {
mTopScrim.setAlpha(Math.round(255 * factor));
Expand Down

0 comments on commit 4f319d9

Please sign in to comment.