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

Commit 2edd5e76 authored by Yoshinori Hirano's avatar Yoshinori Hirano Committed by android-build-merger
Browse files

Merge "Hide Wi-Fi activity indicator when Wi-Fi icon is hidden" into oc-dev

am: 0b45799a

Change-Id: I1cd5fb3d0d6ca3bbd98be741a265ef7561097d4b
parents 27c0596f 0b45799a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -294,8 +294,8 @@ public class SignalClusterView extends LinearLayout implements NetworkController
        mWifiStrengthId = statusIcon.icon;
        mWifiBadgeId = statusIcon.iconOverlay;
        mWifiDescription = statusIcon.contentDescription;
        mWifiIn = activityIn && mActivityEnabled;
        mWifiOut = activityOut && mActivityEnabled;
        mWifiIn = activityIn && mActivityEnabled && mWifiVisible;
        mWifiOut = activityOut && mActivityEnabled && mWifiVisible;

        apply();
    }