Kodi Community Forum
Removing Cover image from FullScreen OSD - 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)
+--- Thread: Removing Cover image from FullScreen OSD (/showthread.php?tid=72495)



Removing Cover image from FullScreen OSD - Steph09 - 2010-04-20

HI, Quick question.

Is there any way to disable/remove the little thumbnail image that shows up on the bottom/left of the Fullscreen Video display?
Image

I was playing around with the 'DialogFullScreenInfo.xml' but coudn't figure out which part I needed to edit.

Thanks in advance for any help Smile


- djtoll - 2010-04-20

This Parts can You Editing.

[HTML]<control type="image">
<description>Non Movie cover image</description>
<posx>10</posx>
<posy>290r</posy>
<width>340</width>
<height>260</height>
<fadetime>200</fadetime>
<texture background="true">$INFO[VideoPlayer.Cover]</texture>
<aspectratio aligny="bottom">keep</aspectratio>
<bordertexture border="8">ThumbShadow.png</bordertexture>
<bordersize>8</bordersize>
<visible>!VideoPlayer.Content(Movies)</visible>
</control>
<control type="image">
<description>Movie cover image</description>
<posx>10</posx>
<posy>350r</posy>
<width>340</width>
<height>320</height>
<fadetime>200</fadetime>
<texture background="true">$INFO[VideoPlayer.Cover]</texture>
<aspectratio aligny="bottom">keep</aspectratio>
<bordertexture border="8">ThumbShadow.png</bordertexture>
<bordersize>8</bordersize>
<visible>VideoPlayer.Content(Movies)</visible>
</control>[/HTML]


- Steph09 - 2010-04-21

Thanks.