Merge "Fix device config property change for refresh rate in low and high zone is read incorrectly" into tm-qpr-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
01ce329a1f
@@ -2812,8 +2812,8 @@ public class DisplayModeDirector {
|
||||
.sendToTarget();
|
||||
|
||||
if (refreshRateInLowZone != -1) {
|
||||
mHandler.obtainMessage(MSG_REFRESH_RATE_IN_LOW_ZONE_CHANGED, refreshRateInLowZone)
|
||||
.sendToTarget();
|
||||
mHandler.obtainMessage(MSG_REFRESH_RATE_IN_LOW_ZONE_CHANGED, refreshRateInLowZone,
|
||||
0).sendToTarget();
|
||||
}
|
||||
|
||||
int[] highDisplayBrightnessThresholds = getHighDisplayBrightnessThresholds();
|
||||
@@ -2825,8 +2825,8 @@ public class DisplayModeDirector {
|
||||
.sendToTarget();
|
||||
|
||||
if (refreshRateInHighZone != -1) {
|
||||
mHandler.obtainMessage(MSG_REFRESH_RATE_IN_HIGH_ZONE_CHANGED, refreshRateInHighZone)
|
||||
.sendToTarget();
|
||||
mHandler.obtainMessage(MSG_REFRESH_RATE_IN_HIGH_ZONE_CHANGED, refreshRateInHighZone,
|
||||
0).sendToTarget();
|
||||
}
|
||||
|
||||
final int refreshRateInHbmSunlight = getRefreshRateInHbmSunlight();
|
||||
|
||||
Reference in New Issue
Block a user