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

Commit 4939068d authored by Amin Shaikh's avatar Amin Shaikh Committed by android-build-merger
Browse files

Merge "Fix StatusBarWifiView applying the wrong wifi icon" into qt-dev

am: 7c5b1dbb

Change-Id: I79a9146042e91d2f773687f73af0a8dcc8ba701e
parents b59231b0 7c5b1dbb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -197,7 +197,7 @@ public class StatusBarWifiView extends FrameLayout implements DarkReceiver,
    private boolean updateState(WifiIconState state) {
        setContentDescription(state.contentDescription);
        if (mState.resId != state.resId && state.resId >= 0) {
            mWifiIcon.setImageDrawable(mContext.getDrawable(mState.resId));
            mWifiIcon.setImageDrawable(mContext.getDrawable(state.resId));
        }

        mIn.setVisibility(state.activityIn ? View.VISIBLE : View.GONE);