[BUG & FIX] HomeAddonsCommonLayout include
#1
There is a bug in the HomeAddonsCommonLayout include (found in the includes.xml file, from line 946).
The following sections are never invoked because the <visible> tags are wrong (lines 1038 and 1050):

Code:
            <control type="label">
                <left>1</left>
                <top>125</top>
                <width>180</width>
                <height>20</height>
                <font>font12</font>
                <textcolor>white</textcolor>
                <align>center</align>
                <aligny>center</aligny>
                <label>$INFO[ListItem.Label]</label>
                <visible>Control.HasFocus(9002)</visible>          <== Line 1038
            </control>
            <control type="label">
                <left>1</left>
                <top>125</top>
                <width>180</width>
                <height>20</height>
                <font>font12</font>
                <textcolor>grey2</textcolor>
                <align>center</align>
                <aligny>center</aligny>
                <label>$INFO[ListItem.Label]</label>
                <visible>!Control.HasFocus(9002)</visible>          <== Line 1050
            </control>

I believe that the 2 lines marked should read:

Code:
<visible>ControlGroup(9002).HasFocus</visible>

and

Code:
<visible>!ControlGroup(9002).HasFocus</visible>

respectively.
Anti-Fascist◾Artist◾Atheist◾Barefoot◾Cis-male◾Cyclist◾Gay◾Geeky◾Introverted◾Likes weird stuff◾Living with depression & anxiety◾Naturist◾Pierced◾Socialist◾He/him
Reply
#2
thanx, we fixed that bug a few months ago:
https://github.com/xbmc/xbmc/commit/f185...9a6b12a565
Do not PM or e-mail Team-Kodi members directly asking for support.
Always read the Forum rules, Kodi online-manual, FAQ, Help and Search the forum before posting.
Reply
#3
In Isengard, yes. In Helix? No. Despite the fact that there have 2 point releases of Kodi 14 since 12th January.

So, I published the above information so anybody using Helix with the Confluence skin, or derivatives, can fix it themselves.
Anti-Fascist◾Artist◾Atheist◾Barefoot◾Cis-male◾Cyclist◾Gay◾Geeky◾Introverted◾Likes weird stuff◾Living with depression & anxiety◾Naturist◾Pierced◾Socialist◾He/him
Reply
#4
Maybe you should have made that clear from your post that this for people who want to fix this in 14.2
Read/follow the forum rules.
For troubleshooting and bug reporting, read this first
Interested in seeing some YouTube videos about Kodi? Go here and subscribe
Reply

Logout Mark Read Team Forum Stats Members Help
[BUG & FIX] HomeAddonsCommonLayout include0