ginjaninja 572 Posted March 1, 2014 Posted March 1, 2014 v3,0.129 MBC v.3.0.4.1 chocolate If you have a large number of movies in list view (ive reproduced with 285 Movies), when you scroll past bottom of list, the focus jumps from 285 to 265 ad infinitum as you scroll down. (rather than back to 1) (always seems to be 20 titles back for other list lengths tested) only seems to affect chocolate
ebr 15609 Posted March 1, 2014 Posted March 1, 2014 I know about this but I've never been able to figure out why that happens. Perhaps @@Soultaker has a clue...?
Soultaker 225 Posted March 1, 2014 Posted March 1, 2014 Without looking at your source code or anything, sounds like your repeater properties are either mis-matched or missing (e.g repeat, repeatgap, allowwrap, etc....)
ebr 15609 Posted March 2, 2014 Posted March 2, 2014 Neither AllowWrap nor Repeat were specified on the layout but adding them, doesn't change the behaviour. What appears to be happening is the wrap around is wrapping to the first visible item instead of actually the first item. <Repeater Source="[Folder.Children]" Name="MyRepeater" ContentName="BaseItem" DiscardOffscreenVisuals="false"> <Layout> <FlowLayout Orientation="Vertical" Spacing="1,1" AllowWrap="true" Repeat="Never"/> </Layout> If I change it to repeat when too big things get really wonky. I think there is some code hidden somewhere that I can't find that is trying to manipulate the position or something.
ebr 15609 Posted March 22, 2014 Posted March 22, 2014 The previous caretaker of Chocolate found this issue and has fixed it. It was one of those things that was staring at me all the time but I just couldn't see it. Thanks, Neil.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now