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

Commit c4b6e2a1 authored by Jason Monk's avatar Jason Monk Committed by Android (Google) Code Review
Browse files

Merge "QS Edit: Fix up accessibility" into nyc-dev

parents 630436c9 ad5db297
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -286,10 +286,11 @@ public class TileAdapter extends RecyclerView.Adapter<Holder> implements TileSta
    private void selectPosition(int position, View v) {
        // Remove the placeholder.
        mAccessibilityMoving = false;
        move(mAccessibilityFromIndex, position, v);
        mTiles.remove(mEditIndex);
        mTiles.remove(mEditIndex--);
        notifyItemRemoved(mEditIndex - 1);
        move(mAccessibilityFromIndex, position, v);
        updateDividerLocations();
        notifyDataSetChanged();
        saveSpecs(mHost);
    }