Kodi Community Forum

Full Version: Remove info panel
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is it possible to remove the info panel from the poster wrap view in the movie library? I can't find an option to do this so I'm guessing its a case of editing an xml file somewhere...anyone able to point me in the right direction?

Thanks.
jj0076 Wrote:Is it possible to remove the info panel from the poster wrap view in the movie library? I can't find an option to do this so I'm guessing its a case of editing an xml file somewhere...anyone able to point me in the right direction?

Thanks.

Fixed in Git - if you are using the Passion Repo this will update automatically.

in MyVideoNav.xml you can add this after line 308 </control>
Code:
<control type="togglebutton" id="33">
    <description>Toggle MoviesFanart</description>
    <include>WindowMenuButton_Vertical</include>
    <label>$LOCALIZE[31006]</label>
    <altlabel>$LOCALIZE[21375]</altlabel>
    <onclick>Skin.ToggleSetting(View508HideInfo)</onclick>
    <selected>Skin.HasSetting(View508HideInfo)</selected>
    <visible>Control.IsVisible(508) + Container.Content(movies)</visible>
</control>
Thank you!!