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

Commit 08e76661 authored by Tom O'Neill's avatar Tom O'Neill Committed by Android (Google) Code Review
Browse files

Merge "Suppress location tile in QS on lock screen" into lmp-dev

parents a240d837 d5289303
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -60,7 +60,11 @@ public class LocationTile extends QSTile<QSTile.BooleanState> {
    @Override
    protected void handleUpdateState(BooleanState state, Object arg) {
        final boolean locationEnabled =  mController.isLocationEnabled();
        state.visible = !(mKeyguard.isSecure() && mKeyguard.isShowing());

        // Work around for bug 15916487: don't show location tile on top of lock screen. After the
        // bug is fixed, this should be reverted to only hiding it on secure lock screens:
        // state.visible = !(mKeyguard.isSecure() && mKeyguard.isShowing());
        state.visible = !mKeyguard.isShowing();
        state.value = locationEnabled;
        if (locationEnabled) {
            state.iconId = R.drawable.ic_qs_location_on;