Kodi Community Forum
Button in shutdown menu to reload skin... - 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: Aeon Nox: Silvo (https://forum.kodi.tv/forumdisplay.php?fid=142)
+---- Thread: Button in shutdown menu to reload skin... (/showthread.php?tid=139039)



Button in shutdown menu to reload skin... - Muckl - 2012-08-25

Wouldn't a button to reload the skin fit nicely in the shutdown menu?

This works just fine:
Code:
<control type="button" id="11">
    <description>Reload Skin</description>
    <label>$LOCALIZE[20183]</label>
    <include>Objects_ContextMenuButton</include>
    <onclick>Dialog.Close(all,true)</onclick>
    <onclick>XBMC.ReloadSkin()</onclick>
</control>

Just a suggestion Smile


RE: Button in shutdown menu to reload skin... - phil65 - 2012-08-25

(2012-08-25, 16:10)Muckl Wrote: Wouldn't a button to reload the skin fit nicely in the shutdown menu?

This works just fine:
Code:
<control type="button" id="11">
    <description>Reload Skin</description>
    <label>$LOCALIZE[20183]</label>
    <include>Objects_ContextMenuButton</include>
    <onclick>Dialog.Close(all,true)</onclick>
    <onclick>XBMC.ReloadSkin()</onclick>
</control>

Just a suggestion Smile

no. users should never use that and skinners can map that to a key.


RE: Button in shutdown menu to reload skin... - Muckl - 2012-08-25

Alright Smile