2012-07-24, 18:12
I am running XBMC 11 in linux both exit and shutdown button do the samething.
I found fix
edit file /home/username/.xbmc/addons/skin.transparency/720p/DialogButtonMenu.xml
<control type="button" id="36">
<onclick condition="!Skin.HasSetting(Hide_Shutdown_Shutdown)">Shutdown()</onclick>
changed to
<control type="button" id="36">
<onclick condition="!Skin.HasSetting(Hide_Shutdown_Shutdown)">XBMC.Powerdown()</onclick>
Now shutdown button powers down computer, hope this helps someone with the same problem
Dean
I found fix
edit file /home/username/.xbmc/addons/skin.transparency/720p/DialogButtonMenu.xml
<control type="button" id="36">
<onclick condition="!Skin.HasSetting(Hide_Shutdown_Shutdown)">Shutdown()</onclick>
changed to
<control type="button" id="36">
<onclick condition="!Skin.HasSetting(Hide_Shutdown_Shutdown)">XBMC.Powerdown()</onclick>
Now shutdown button powers down computer, hope this helps someone with the same problem
Dean