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

Commit cc57f69a authored by Pedlar's avatar Pedlar
Browse files

Fix dBm signal icon. Was showing bars when enabled, and not showing them when disabled.

I forgot the !.
parent 4cecacb0
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() {