2019-09-26, 18:48
Hi,
I would like that Kodi doesn't display the full information about a song in the music browser, because that uses too much space on the tiles.
In other words I want:
instead of this:
where the long string "track number.artist name - song title" is obviously truncated.
I cannot change
<control type="textbox">
<posx>10</posx>
<posy>199</posy>
<width>385</width>
<height>100</height>
<font>font20_narrow</font>
<selectedcolor>selected</selectedcolor>
<align>center</align>
<aligny>center</aligny>
<label>$INFO[ListItem.Label]</label>
</control>
to
<control type="textbox">
<posx>10</posx>
<posy>199</posy>
<width>385</width>
<height>100</height>
<font>font20_narrow</font>
<selectedcolor>selected</selectedcolor>
<align>center</align>
<aligny>center</aligny>
<label>$INFO[ListItem.Title]</label>
</control>
in Estouchy's ViewsThumbnail.xml because this would change the tiles' text everywhere, including during navigation in the music tree.
How can I get the expected results?
Thanks in advance for your help.
I would like that Kodi doesn't display the full information about a song in the music browser, because that uses too much space on the tiles.
In other words I want:
instead of this:
where the long string "track number.artist name - song title" is obviously truncated.
I cannot change
<control type="textbox">
<posx>10</posx>
<posy>199</posy>
<width>385</width>
<height>100</height>
<font>font20_narrow</font>
<selectedcolor>selected</selectedcolor>
<align>center</align>
<aligny>center</aligny>
<label>$INFO[ListItem.Label]</label>
</control>
to
<control type="textbox">
<posx>10</posx>
<posy>199</posy>
<width>385</width>
<height>100</height>
<font>font20_narrow</font>
<selectedcolor>selected</selectedcolor>
<align>center</align>
<aligny>center</aligny>
<label>$INFO[ListItem.Title]</label>
</control>
in Estouchy's ViewsThumbnail.xml because this would change the tiles' text everywhere, including during navigation in the music tree.
How can I get the expected results?
Thanks in advance for your help.