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

Commit b2aac59c authored by Ethan Chen's avatar Ethan Chen Committed by Steve Kondik
Browse files

SystemUI: Fix mobile data connection type hiding

* Hide mobile data connection type when WiFi is connected.

Change-Id: Id346bc0040436f2bfc7219445d0a3ba8000eea3b
parent ac386caa
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -402,7 +402,8 @@ public class SignalClusterView

        if (mStyle == STATUS_BAR_STYLE_ANDROID_DEFAULT) {
            mMobileType.setVisibility(
                    (mRoaming || mMobileTypeId != 0) ? View.VISIBLE : View.GONE);
                    ((mRoaming || mMobileTypeId != 0) && !mWifiVisible) ?
                    View.VISIBLE : View.GONE);
        } else {
            mMobileType.setVisibility(View.GONE);
        }