Kodi Community Forum

Full Version: Transparency! skin and Experimental Google Music Addon.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
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>
Everything is okay now.
thanx!