Kodi Community Forum
Remove info panel - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Skin Archive (https://forum.kodi.tv/forumdisplay.php?fid=179)
+----- Forum: Neon (https://forum.kodi.tv/forumdisplay.php?fid=139)
+----- Thread: Remove info panel (/showthread.php?tid=123501)



Remove info panel - jj0076 - 2012-02-21

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.


- stoli - 2012-02-21

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>



- jj0076 - 2012-02-21

Thank you!!