[BUG][Fix] List View blurs when scrolling long file names
#1
Lightbulb 
I would like to say thanks to everyone involved in XBMC for all your hard work!Nod

Bug
blurs when scrolling long file names see below

Image

Fix
add this code to
Includes_Animations.xml

Code:
    <include name="Animation_ButtonFocusFade_fix">
        <animation effect="fade" start="100" end="0" time="200">Focus</animation>
        <animation effect="fade" start="0" end="100" time="200">Unfocus</animation>
    </include>

then add 2 lines into
Viewtype_List.xml
Code:
    <focusedlayout height="43">
        <control type="image">
            <posx>0</posx>
            <posy>36</posy>
            <height>2</height>
            <width>646</width>
            <texture>windows/list_dividerbar.png</texture>
        </control>
        <control type="image">
            <posx>0</posx>
            <posy>-22</posy>
            <width>773</width>
            <height>87</height>
            <texture>windows/listselectbar.png</texture>
            <include>Animation_ButtonFocusFade</include>
            <visible>Control.IsVisible(50) | Window.IsActive(106) | Window.IsActive(129) | Window.IsActive(126) | Window.IsActive(601) | Window.IsActive(602) | Window.IsActive(111) | Window.IsActive(2003)</visible>
        </control>
        <control type="label">
            <include>ListLabel_Main</include>
            <include>listcolornofocus</include>
            <info>ListItem.Label</info>
            [b]<include>Animation_ButtonFocusFade_fix</include>  <!-- <<<<<< Add this line -->[/b]
        </control>            
        <control type="label">
            <include>ListLabel_Main</include>
            <include>listcolorfocus</include>
            <info>ListItem.Label</info>
            <include>Animation_ButtonFocusFade</include>
        </control>
        <control type="label">
            <include>ListLabel_Detail</include>
            <include>listcolornofocus</include>
            <label fallback="-">[UPPERCASE]$INFO[ListItem.Label2][/UPPERCASE]</label>
            [b]<include>Animation_ButtonFocusFade_fix</include>  <!-- <<<<<< Add this line -->[/b]
            <visible>!Control.IsVisible(76)</visible>
        </control>
        <control type="label">
            <include>ListLabel_Detail</include>
            <include>listcolorfocus</include>
            <label fallback="-">[UPPERCASE]$INFO[ListItem.Label2][/UPPERCASE]</label>
            <include>Animation_ButtonFocusFade</include>
            <visible>!Control.IsVisible(76)</visible>
        </control>                    
    </focusedlayout>
Reply
#2
Thanks, worked perfectly.
Reply
#3
Good man.
Reply

Logout Mark Read Team Forum Stats Members Help
[BUG][Fix] List View blurs when scrolling long file names0