Fix issue #303 - Visibility not correctly applied after reordering lists.

This commit is contained in:
Thomas 2022-09-08 15:46:19 +02:00
parent f5aa8a03e5
commit 514bc0794e
1 changed files with 2 additions and 0 deletions

View File

@ -164,6 +164,8 @@ public class ReorderTabAdapter extends RecyclerView.Adapter<RecyclerView.ViewHol
pinned.pinnedTimelines.get(j).position = j;
}
notifyItemMoved(fromPosition, toPosition);
notifyItemChanged(fromPosition);
notifyItemChanged(toPosition);
try {
new Pinned(context).updatePinned(pinned);
((ReorderTimelinesActivity) context).setChanges(true);