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

Commit 6d2fab2e authored by Xiangyu/Malcolm Chen's avatar Xiangyu/Malcolm Chen Committed by Android (Google) Code Review
Browse files

Merge "Revert "By default, turn on signal strength update in power save mode."" into pi-dev

parents 81831a89 9c2c0fef
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -208,11 +208,8 @@ public class DeviceStateMonitor extends Handler {
     * @return True if signal strength update should be turned off.
     */
    private boolean shouldTurnOffSignalStrength() {
        // Depending on the configuration, we might not want to get signal strength update
        // when the device is in power save mode.
        if (mIsPowerSaveOn && mPhone.getContext().getResources().getBoolean(
                com.android.internal.R.bool
                    .config_disable_signal_strength_update_in_powersave_mode)) {
        // We don't want to get signal strength update when the device is in power save mode.
        if (mIsPowerSaveOn) {
            return true;
        }