Skip to content

Commit

Permalink
* setting an item at a position, requires a notifyItemChanged not a…
Browse files Browse the repository at this point in the history
… `notifyItemInserted`

  * FIX #602
  • Loading branch information
mikepenz committed Jan 15, 2018
1 parent 1cd6810 commit 62d16c9
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -91,7 +91,7 @@ public boolean isEmpty() {
@Override
public void set(int position, Item item) {
mItems.set(position, item);
getFastAdapter().notifyAdapterItemInserted(position);
getFastAdapter().notifyAdapterItemChanged(position);
}

@Override
Expand Down

0 comments on commit 62d16c9

Please sign in to comment.