stoli,
I noticed something with the show video path instead of mpaa rating option you added that when I toggle it on it works as intended but then when I try to turn it off I am unable to and Metropolis will still continue to show the video path. I was able to fix this by editing the CustomSettings.xml file as follows:
At line 1611 change this:
Code:
<control type="radiobutton" id="1015">
<include>SettingsLabel</include>
<label>$LOCALIZE[31429]</label>
<onclick>Skin.SetBool(ShowVideoPath)</onclick>
<selected>Skin.HasSetting(ShowVideoPath)</selected>
</control>
to the following:
Code:
<control type="radiobutton" id="1015">
<include>SettingsLabel</include>
<label>$LOCALIZE[31429]</label>
<onclick>Skin.SetBool(ShowVideoPath)</onclick>
<onclick>Skin.ToggleSetting(ShowVideoPath)</onclick>
<selected>Skin.HasSetting(ShowVideoPath)</selected>
</control>
Please double check me on that before adding the fix to Metropolis but it does seem to correct it on my end.
Hope that helps... Amra
[EDIT] Sorry I didn't catch it in time but I think the "<onclick>Skin.SetBool(ShowVideoPath)</onclick>" line needs to be removed from the second code section above. See my post below.