Kodi Community Forum

Full Version: Custom backdrops trouble
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Setting a random backdrop for shutdown instead sets it for settings? But setting it for "settings" works fine. From the looks of it, it seems fine to me?

skin setting code:

PHP Code:
<item id="7">
                                <
label>13000</label>
                                <
onclick>-</onclick>
                                <
icon>special://skin/media/backgrounds/settings.jpg</icon>
                                
<thumb>$INFO[Skin.String(CustomSettingsFolder)]</thumb>
                            </
item>
                            <
item id="8">
                                <
label>31019</label>
                                <
onclick>-</onclick>
                                <
icon>special://skin/media/backgrounds/shutdown.jpg</icon>
                                
<thumb>$INFO[Skin.String(CustomShutdownFolder)]</thumb>
                            </
item

Home.xml code:
PHP Code:
<item id="9">
                    <
description>settings</description>
                    <
label>$LOCALIZE[31016]</label>
                    <
icon>special://skin/media/backgrounds/settings.jpg</icon>
                    
<thumb>$INFO[Skin.String(CustomSettingsFolder)]</thumb>            
                    <
onclick>XBMC.ActivateWindow(settings)</onclick>
                </
item>
<
item id="13">
                    <
label>31019</label>
                    <
icon>special://skin/media/backgrounds/shutdown.jpg</icon>
                    
<thumb>$INFO[Skin.String(CustomShutdownFolder)]</thumb>
                    <
onclick>XBMC.Shutdown()</onclick>
                    <
visible>!Skin.HasSetting(HomeMenuNoShutdownButton)</visible>
                </
item

Maybe someone else will notice something?
I 'll take a guess and say your code for setting the image has CustomSettingsFolder instead of CustomShutdownFolder in it (copy paste error)