Skip to content

Commit

Permalink
reenable predictive animations
Browse files Browse the repository at this point in the history
  • Loading branch information
jamie-mh committed Nov 30, 2020
1 parent 5de27a1 commit ea7ce47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AuthenticatorPro/Source/List/AutoGridLayoutManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public override void OnLayoutChildren(RecyclerView.Recycler recycler, RecyclerVi

public override bool SupportsPredictiveItemAnimations()
{
return false;
return true;
}
}
}
2 changes: 1 addition & 1 deletion AuthenticatorPro/Source/List/FixedGridLayoutManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public FixedGridLayoutManager(Context context, int spanCount) : base(context, sp

public override bool SupportsPredictiveItemAnimations()
{
return false;
return true;
}
}
}

0 comments on commit ea7ce47

Please sign in to comment.