Skip to content
This repository has been archived by the owner on Jul 14, 2021. It is now read-only.

Commit

Permalink
fix issue #24
Browse files Browse the repository at this point in the history
  • Loading branch information
longerian committed Mar 15, 2017
1 parent 7a8da5f commit 4848346
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,9 @@ public void addAdapters(int position, @Nullable List<Adapter> adapters) {
mAdapters.add(position, Pair.create(observer, adapter));
}

super.setHasStableIds(hasStableIds);
if (!hasObservers()) {
super.setHasStableIds(hasStableIds);
}
super.setLayoutHelpers(helpers);
}

Expand Down

0 comments on commit 4848346

Please sign in to comment.