Skip to content
This repository has been archived by the owner on Apr 10, 2020. It is now read-only.

Commit

Permalink
Fix a LongListMultiSelector animation bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Kinnara committed Nov 22, 2014
1 parent 845e0a9 commit e22624c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1001,7 +1001,7 @@ private void ApplyItemsState(LongListMultiSelectorItem.State state, bool useTran
else
{
// item's bottom is visible if >= 0
pt = itemTransform.Transform(new Point(item.ActualHeight, 0));
pt = itemTransform.Transform(new Point(0, item.ActualHeight));
isVisible = pt.Y >= 0;
}
if (isVisible)
Expand Down

0 comments on commit e22624c

Please sign in to comment.