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

Commit c6e0d445 authored by Steve Kondik's avatar Steve Kondik Committed by Gerrit Code Review
Browse files

Merge "Fix dBm signal icon. Was showing bars when enabled, and not showing...

Merge "Fix dBm signal icon. Was showing bars when enabled, and not showing them when disabled." into froyo
parents 7bb79fb0 c9d24a11
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1044,7 +1044,7 @@ public class StatusBarPolicy {
                    Settings.System.SHOW_STATUS_HIDE_SIGNAL, 0) == 1);
        boolean dbmEnabled = (Settings.System.getInt(mContext.getContentResolver(),
                    Settings.System.SHOW_STATUS_DBM, 0) == 1);
        mService.setIconVisibility(mPhoneIcon, (signalEnabled && dbmEnabled));
        mService.setIconVisibility(mPhoneIcon, !(signalEnabled && dbmEnabled));
    }

    private final void updateSignalStrength() {