hope it's ok to post this heppen
in "includes_DialogVideoInfo" the disable clearart logo option is not respected
this can be fixed by changing this control group xml that starts at line 27 in the original file
Code:
<control type="group">
<left>570</left>
<control type="group">
<top>60</top>
<control type="label">
<left>150</left>
<bottom>60</bottom>
<label>$INFO[ListItem.Title]</label>
<font>font_title_bold</font>
<visible>String.IsEmpty(ListItem.Art(clearlogo)) + String.IsEmpty(ListItem.Art(tvshow.clearlogo))</visible>
</control>
<control type="image">
<top>-940</top>
<left>150</left>
<width>480</width>
<aspectratio>keep</aspectratio>
<texture background="true">$VAR[ClearLogoHome]</texture>
<visible>!String.IsEmpty(ListItem.Art(clearlogo)) | !String.IsEmpty(ListItem.Art(tvshow.clearlogo))</visible>
</control>
</control>
to
Code:
<control type="group">
<left>570</left>
<control type="group">
<top>60</top>
<control type="label">
<left>150</left>
<bottom>60</bottom>
<label>$INFO[ListItem.Title]</label>
<font>font_title_bold</font>
<visible>[String.IsEmpty(ListItem.Art(clearlogo)) | String.IsEmpty(ListItem.Art(tvshow.clearlogo))] + Skin.HasSetting(DisableClearlogo)</visible>
</control>
<control type="image">
<top>-940</top>
<left>150</left>
<width>480</width>
<aspectratio>keep</aspectratio>
<texture background="true">$VAR[ClearLogoHome]</texture>
<visible>[!String.IsEmpty(ListItem.Art(clearlogo)) | !String.IsEmpty(ListItem.Art(tvshow.clearlogo))] + !Skin.HasSetting(DisableClearlogo)</visible>
</control>
</control>
another thing that i wanted to change was the presentation of the clearlogo when enabled
because it was a bit all over the place and took up too much area overlapping certain aspects
these are just the settings i prefered but i'll add them in case anyone else wants to make the
same changes (or tweak them to their own preference)
in the file Includes_Object.xml change these params of of the ObjectItemShowcase include
from
Code:
<param name="clearlogo_top_margin" default="-940" />
<param name="clearlogo_width" default="480" />
to
Code:
<param name="clearlogo_top_margin" default="-40" />
<param name="clearlogo_width" default="480" />
and also add in this line
Code:
<param name="clearlogo_height" default="160" />
further down at line 796 below this line
Code:
<width>$PARAM[clearlogo_width]</width>
add this line
Code:
<height>$PARAM[clearlogo_height]</height>