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

Commit fb1d6881 authored by kaiyiz's avatar kaiyiz
Browse files

SystemUI: Fix "wifi icon overlaps mobile signal icon" issue for single sim

The mobile signal icon is not triangle in carrier style, so it's necessary
to insert a spacer between wifi icon and sim mobile signal icon.

Use the spacer if the signal style is not default.

CRs-Fixed: 638161

Change-Id: I4b52c6047e34f1904a2f97a98eff38324ea59928
parent a0ca67cc
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -285,7 +285,8 @@ public class SignalClusterView
        }

        if (mMobileVisible && mWifiVisible &&
                ((mIsAirplaneMode) || (mNoSimIconId != 0))) {
                ((mIsAirplaneMode) || (mNoSimIconId != 0) ||
                (mStyle != STATUS_BAR_STYLE_ANDROID_DEFAULT))) {
            mSpacer.setVisibility(View.INVISIBLE);
        } else {
            mSpacer.setVisibility(View.GONE);