Kodi Community Forum
Solved What xml is related to the "choose art" feature step 3? - 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: Estuary (https://forum.kodi.tv/forumdisplay.php?fid=260)
+---- Thread: Solved What xml is related to the "choose art" feature step 3? (/showthread.php?tid=376100)



What xml is related to the "choose art" feature step 3? - masonlee - 2024-01-29

I'd like to change the texture size in choose art dialog,

the right lower texture in "Image 3" on this kodi wiki page.

(Artwork/Changing (wiki))

I figured out  "Image 2" dialog is related to DialogSelect.xml and Includes_DialogSelect.xml,

but I have no idea about "Image 3" dialog.

If I should edit not skin xml file but c++ code file, please let me know what code file is related to this texture.

Thank you.


RE: What xml is related to the "choose art" feature step 3? - izprtxqkft - 2024-01-29

it's FileBrowser.xml

specifically this control https://github.com/xbmc/xbmc/blob/master/addons/skin.estuary/xml/FileBrowser.xml#L47



for future reference Kodi has a skin debug overlay that will show the current window and xml file

use Skin.ToggleDebug from keymap

or

set debugging to true on this line of the addon.xml https://github.com/xbmc/xbmc/blob/master/addons/skin.estuary/addon.xml#L6


RE: What xml is related to the "choose art" feature step 3? - masonlee - 2024-01-29

Great!