Kodi Community Forum
Remove "DefaultArtist" from FanArt view - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Skin Archive (https://forum.kodi.tv/forumdisplay.php?fid=179)
+----- Forum: Transparency! (https://forum.kodi.tv/forumdisplay.php?fid=115)
+----- Thread: Remove "DefaultArtist" from FanArt view (/showthread.php?tid=123623)



Remove "DefaultArtist" from FanArt view - bushbrother - 2012-02-22

Hi,

I am wondering if someone can help me out, I am using the Transparency skin and I want to modify it to remove the artist thumbnail that displays when scrolling through the list of artists while in FanArt view.

While in this view there are a list of artists in the bottom right - and in the bottom list an artist thumbnail is show or the defaultartist.png appears on bottom left when there is no artist thumbanail.

http://transparency-xbmc.googlecode.com/svn/trunk/media/DefaultArtist.png

How can I completely remove this from showing (even if there is a valid thumbnail)? I prefer for it not to show and just have the artist list with fanart in the background. I have tried looking in the various XML but I have not managed to find where this happens or how to stop it.

Any help appreciated. Big Grin


Hi bushbrother - Hayabusa - 2012-02-22

Its in View-Fanart.xml

Line 1245 till 1255

Code:
<control type="image">
    <posx>8</posx>
        <posy>505</posy>
    <width>210</width>
    <height>210</height>
    <aspectratio scalediffuse="false">scale</aspectratio>
    <texture diffuse="thumb-diffuse.png"    background="true">$INFO[Listitem.Icon]</texture>
    <bordersize>6</bordersize>
    <fadetime>IconCrossfadeTime</fadetime>
    <visible>!stringcompare(ListItem.Label,..)</visible>
</control>



- bushbrother - 2012-02-22

Thanks. So I just remove that control block?


- Hayabusa - 2012-02-22

bushbrother Wrote:Thanks. So I just remove that control block?

Yes Wink