Kodi Community Forum
Linux Transparency! skin and Experimental Google Music Addon. - 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: Transparency! (https://forum.kodi.tv/forumdisplay.php?fid=115)
+---- Thread: Linux Transparency! skin and Experimental Google Music Addon. (/showthread.php?tid=247784)



Transparency! skin and Experimental Google Music Addon. - xtrem007 - 2015-11-14

Hello!
I have a little problem with Transparency skin and Experimental Google Music Addon. The title line always overlap two names. The one is the song name with track number and the second is only song name. Is there any way to fix this?

Image

Kodi 15.1 running on RPI2
Transparency! 8.0.9


RE: Transparency! skin and Experimental Google Music Addon. - ronie - 2015-11-15

yup, it's a bug in the skin.

it will be fixed in the next version of T! (for Kodi Jarvis).

if you'll like to fix it locally,
you need to modify ../skin.transparency/720p/View_Fanart.xml

at line 1307, insert: <visible>!Window.IsVisible(MusicFiles)</visible>

so it will look like this:
Code:
            <control type="label">
                <posx>262</posx>
                <posy>577</posy>
                <width>510</width>
                <height>30</height>
                <font>font-30</font>
                <textcolor>blue</textcolor>
                <shadowcolor>black</shadowcolor>
                <align>left</align>
                <aligny>center</aligny>
                <label>$VAR[ViewFanartLabel6]</label>
                <visible>!Window.IsVisible(MusicFiles)</visible>
            </control>



RE: Transparency! skin and Experimental Google Music Addon. - xtrem007 - 2015-11-20

Everything is okay now.
thanx!