Bug MusicOSD.xml in Jarvis RC2
#1
Stock Confluence that ships with Kodi Jarvis 16.0 RC2:

The MusicOSD.xml file has an error relating to the recording active indicator:

Code:
<control type="button" id="704">
    <width>55</width>
    <height>55</height>
    <label>264</label>
    <font>-</font>
    <texturefocus>OSDRecordOffFO.png</texturefocus>
    <texturenofocus>OSDRecordOffNF.png</texturenofocus>
    <onclick>PlayerControl(record)</onclick>
    <visible>Player.CanRecord</visible>
</control>

Whereas VideoOSD.xml shows:

Code:
<control type="togglebutton" id="353">
    <width>55</width>
    <height>55</height>
    <label>264</label>
    <altlabel>265</altlabel>
    <font>-</font>
    <texturefocus>OSDRecordOffFO.png</texturefocus>
    <texturenofocus>OSDRecordOffNF.png</texturenofocus>
    <usealttexture>Player.Recording</usealttexture>
    <alttexturefocus>OSDRecordOnFO.png</alttexturefocus>
    <alttexturenofocus>OSDRecordOnNF.png</alttexturenofocus>
    <onclick>PlayerControl(Record)</onclick>
    <enable>Player.CanRecord</enable>
    <animation effect="fade" start="100" end="50" time="75" condition="!Player.CanRecord">Conditional</animation>
    <visible>VideoPlayer.Content(LiveTV)</visible>
</control>

Consequently, the "Recording Active" indicator is never displayed when recording the current radio channel.

I believe MusicOSD.xml should read:

Code:
<control type="togglebutton" id="704">
    <width>55</width>
    <height>55</height>
    <label>264</label>
    <altlabel>265</altlabel>
    <font>-</font>
    <texturefocus>OSDRecordOffFO.png</texturefocus>
    <texturenofocus>OSDRecordOffNF.png</texturenofocus>
    <usealttexture>Player.Recording</usealttexture>
    <alttexturefocus>OSDRecordOnFO.png</alttexturefocus>
    <alttexturenofocus>OSDRecordOnNF.png</alttexturenofocus>
    <onclick>PlayerControl(Record)</onclick>
    <enable>Player.CanRecord</enable>
    <animation effect="fade" start="100" end="50" time="75" condition="!Player.CanRecord">Conditional</animation>
    <visible>MusicPlayer.Content(LiveTV)</visible>
</control>
Anti-Fascist◾Artist◾Atheist◾Barefoot◾Cis-male◾Cyclist◾Gay◾Geeky◾Introverted◾Likes weird stuff◾Living with depression & anxiety◾Naturist◾Pierced◾Socialist◾He/him
Reply

Logout Mark Read Team Forum Stats Members Help
MusicOSD.xml in Jarvis RC20