View Full Version : [BUG - FIXED] Flicker in list view with multiple thumbnails
mindweaver
2009-03-31, 20:33
When you browse files in file view you get these nice thumbnails to the right. There is an option to set these to display one or many.
When set to many it animates when you change item and the new thumbnail gets focus.
This does not work so well. The thumbnails jump/flicker before showing the right one.
I have no good way of demonstrating it :/
This has been a known issue for a long time in the beta forum. No one's found a functioning solution yet but finding one is a priority.
mindweaver
2009-03-31, 20:41
ok :)
I just set mine to show only one thumb until its fixed.
Keep up the good work!
the flicker happens when the image is made visible as the animation to fade it in has not started yet as it starts on hidden so the image is visible for a flash, to fix this we need to hide the image on visible :shocked:
this fix works good on my end just need some people to test it:;):
Viewtype_List.xml
<control type="image" id="3001">
<include>MusicListIcon_Thumb</include>
<info>Container.Listitem(0).Icon</info>
<visible>Container.OnNext</visible>
<animation effect="fade" start="0" end="0" time="0">visible</animation><!-- <<<<< ADD this -->
<animation effect="fade" start="0" end="100" time="200">Hidden</animation>
</control>
<control type="image" id="3001">
<include>MusicListIcon_Glass</include>
<visible>Container.OnNext</visible>
<animation effect="fade" start="0" end="0" time="0">visible</animation><!-- <<<<< ADD this -->
<animation effect="fade" start="0" end="100" time="200">Hidden</animation>
</control>
<!-- SQUARE: Rolling static -->
<control type="image" id="4000">
<include>MovieListIcon_Thumb</include>
<visible>Container.OnPrevious</visible>
<animation effect="fade" start="0" end="0" time="0">visible</animation><!-- <<<<< ADD this -->
<animation effect="fade" start="0" end="100" time="200">Hidden</animation>
<info>Container.Listitem(0).Icon</info>
</control>
<control type="image" id="4000">
<include>MovieListIcon_Glass</include>
<animation effect="fade" start="0" end="0" time="0">visible</animation><!-- <<<<< ADD this -->
<animation effect="fade" start="0" end="100" time="200">Hidden</animation>
<visible>Container.OnPrevious</visible>
</control>
<!-- POSTER: Rolling up -->