Skip to content
Snippets Groups Projects
Commit df162471 authored by Roy Chou's avatar Roy Chou Committed by Android (Google) Code Review
Browse files

Merge "fix(systemui): fix perfetto_ft_systemui-missed_app_frames-mean increased" into main

parents afb239e0 45beedbd
No related branches found
No related tags found
No related merge requests found
......@@ -112,6 +112,9 @@ public class PhoneStatusBarView extends FrameLayout {
mDisplayCutout = null;
}
// Per b/300629388, we let the PhoneStatusBarView detect onConfigurationChanged to
// updateResources, instead of letting the PhoneStatusBarViewController detect onConfigChanged
// then notify PhoneStatusBarView.
@Override
protected void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
......
......@@ -16,7 +16,6 @@
package com.android.systemui.statusbar.phone
import android.app.StatusBarManager.WINDOW_STATUS_BAR
import android.content.res.Configuration
import android.graphics.Point
import android.util.Log
import android.view.MotionEvent
......@@ -72,10 +71,6 @@ private constructor(
private val configurationListener =
object : ConfigurationController.ConfigurationListener {
override fun onConfigChanged(newConfig: Configuration?) {
mView.updateResources()
}
override fun onDensityOrFontScaleChanged() {
mView.onDensityOrFontScaleChanged()
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment