Kodi Community Forum
Changing Gui setting from addon - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27)
+--- Thread: Changing Gui setting from addon (/showthread.php?tid=179573)



Changing Gui setting from addon - tahir0331 - 2013-12-04

Hi
i am developing an add-on ,
the feature i need is to hide/remove the back button (..) from only one screen ,
i have search and come up with the idea to change the value

<filelists>
<allowfiledeletion>false</allowfiledeletion>
<ignorethewhensorting>true</ignorethewhensorting>
<showaddsourcebuttons>true</showaddsourcebuttons>
<showextensions>true</showextensions>
<showhidden>false</showhidden>
<showparentdiritems>true</showparentdiritems>
</filelists>

using code from python from the GUISetting.xml.

i have found this code to change the setting
xbmc.executebuiltin("SetGUISetting(filelists.showparentdiritems;'False')" )
from this thread
Thread

i haven't find this working , any idea how to do this,
waiting for any idea/guide
thanks