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

Commit 78047782 authored by Evan Laird's avatar Evan Laird
Browse files

Wi-Fi, now corporeal!

Given a state where the Wi-Fi icon could overflow (i.e. on the lock
screen with mobile data and other icons showing:

Killing the sysui process could cause the whole wifi icon to become
hidden, and it never was unhidden.

Test: With the overflow space in use, `adb shell kill $(pid com.android.systemui)`
Change-Id: I026923b3dae16b9afa1a5acc3bd88887816a6391
Fixes: 80577291
parent dea740bd
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -260,7 +260,8 @@ public class StatusBarMobileView extends FrameLayout implements DarkReceiver,
                break;
            case STATE_HIDDEN:
            default:
                setVisibility(View.INVISIBLE);
                mMobileGroup.setVisibility(View.INVISIBLE);
                mDotView.setVisibility(View.INVISIBLE);
                break;
        }
    }
+2 −1
Original line number Diff line number Diff line
@@ -141,7 +141,8 @@ public class StatusBarWifiView extends FrameLayout implements DarkReceiver,
                break;
            case STATE_HIDDEN:
            default:
                setVisibility(View.GONE);
                mWifiGroup.setVisibility(View.GONE);
                mDotView.setVisibility(View.GONE);
                break;
        }
    }