Loading packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBarView.java +1 −1 Original line number Original line Diff line number Diff line Loading @@ -66,7 +66,7 @@ public class PhoneStatusBarView extends PanelBar { } } }; }; private DarkReceiver mBattery; private DarkReceiver mBattery; private int mRotationOrientation; private int mRotationOrientation = -1; @Nullable @Nullable private View mCenterIconSpace; private View mCenterIconSpace; @Nullable @Nullable Loading packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarWindowView.java +5 −4 Original line number Original line Diff line number Diff line Loading @@ -99,11 +99,12 @@ public class StatusBarWindowView extends FrameLayout { } } // padding needed for corner cutout. // padding needed for corner cutout. int leftCornerCutoutPadding = 0; int leftCornerCutoutPadding = cutout.getSafeInsetLeft(); int rightCornerCutoutPadding = 0; int rightCornerCutoutPadding = cutout.getSafeInsetRight(); if (cornerCutoutPadding != null) { if (cornerCutoutPadding != null) { leftCornerCutoutPadding = cornerCutoutPadding.first; leftCornerCutoutPadding = Math.max(leftCornerCutoutPadding, cornerCutoutPadding.first); rightCornerCutoutPadding = cornerCutoutPadding.second; rightCornerCutoutPadding = Math.max(rightCornerCutoutPadding, cornerCutoutPadding.second); } } return new Pair<>( return new Pair<>( Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBarView.java +1 −1 Original line number Original line Diff line number Diff line Loading @@ -66,7 +66,7 @@ public class PhoneStatusBarView extends PanelBar { } } }; }; private DarkReceiver mBattery; private DarkReceiver mBattery; private int mRotationOrientation; private int mRotationOrientation = -1; @Nullable @Nullable private View mCenterIconSpace; private View mCenterIconSpace; @Nullable @Nullable Loading
packages/SystemUI/src/com/android/systemui/statusbar/phone/StatusBarWindowView.java +5 −4 Original line number Original line Diff line number Diff line Loading @@ -99,11 +99,12 @@ public class StatusBarWindowView extends FrameLayout { } } // padding needed for corner cutout. // padding needed for corner cutout. int leftCornerCutoutPadding = 0; int leftCornerCutoutPadding = cutout.getSafeInsetLeft(); int rightCornerCutoutPadding = 0; int rightCornerCutoutPadding = cutout.getSafeInsetRight(); if (cornerCutoutPadding != null) { if (cornerCutoutPadding != null) { leftCornerCutoutPadding = cornerCutoutPadding.first; leftCornerCutoutPadding = Math.max(leftCornerCutoutPadding, cornerCutoutPadding.first); rightCornerCutoutPadding = cornerCutoutPadding.second; rightCornerCutoutPadding = Math.max(rightCornerCutoutPadding, cornerCutoutPadding.second); } } return new Pair<>( return new Pair<>( Loading