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

Commit c2526e9d authored by shinzul's avatar shinzul
Browse files

SystemUI: Fixed bug that caused wimax signal strength to peg at full on the supersonic/speed

Change-Id: I8db2b7937ff061675744e1ab4a2f5f945f4ee56e
parent e59ccd8f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1281,7 +1281,7 @@ public class StatusBarPolicy {
            mService.setIcon("wimax", iconId, 0);
        } else if (action.equals(WimaxConstants.RSSI_CHANGED_ACTION)) {
            int rssi = intent.getIntExtra(WimaxConstants.EXTRA_NEW_RSSI_LEVEL, -200);
            int newSignalLevel = mWimaxSettingsHelper.calculateSignalLevel(rssi, 4);
            int newSignalLevel = rssi;

            int iconId;