diff options
author | Garrett Brown <themagnificentmrb@gmail.com> | 2022-01-12 13:27:43 -0800 |
---|---|---|
committer | Garrett Brown <themagnificentmrb@gmail.com> | 2022-02-18 09:15:46 -0800 |
commit | a390462d2619edcc15ccbd4f926198522a526bb3 (patch) | |
tree | 54728a5318ecef33c38878ef3c7d8afaf9a29c1c | |
parent | 67bc1fcd4878601845f7e07fa2e2c3e8fa8d764e (diff) |
Game OSD: Rename skin includes file to be more generic for games
Adding new skin XML files is a headache for skinners, because Kodi
fails to load if a skin is missing an XML file.
Therefore, we're pretty much stuck with `DialogGameControllers` for
all game dialogs.
Let's at least rename `Includes_Controllers.xml` to`Includes_Games.xml`.
-rw-r--r-- | addons/skin.estuary/xml/DialogGameControllers.xml | 5 | ||||
-rw-r--r-- | addons/skin.estuary/xml/Includes.xml | 2 | ||||
-rw-r--r-- | addons/skin.estuary/xml/Includes_Games.xml (renamed from addons/skin.estuary/xml/Includes_Controllers.xml) | 0 |
3 files changed, 6 insertions, 1 deletions
diff --git a/addons/skin.estuary/xml/DialogGameControllers.xml b/addons/skin.estuary/xml/DialogGameControllers.xml index 67a52394d4..b0f1d11cb3 100644 --- a/addons/skin.estuary/xml/DialogGameControllers.xml +++ b/addons/skin.estuary/xml/DialogGameControllers.xml @@ -1,5 +1,10 @@ <?xml version="1.0" encoding="UTF-8"?> <window> + <description> + Window for game functionality. This dialog was originally for controllers, + but adding new XML windows breaks old skins, so it has been repurposed + for any game-related windows. + </description> <defaultcontrol>3</defaultcontrol> <include>Animation_DialogPopupOpenClose</include> <controls> diff --git a/addons/skin.estuary/xml/Includes.xml b/addons/skin.estuary/xml/Includes.xml index 58a3a08dfb..948243b1b1 100644 --- a/addons/skin.estuary/xml/Includes.xml +++ b/addons/skin.estuary/xml/Includes.xml @@ -3,7 +3,7 @@ <include file="Defaults.xml" /> <include file="Includes_Home.xml" /> <include file="Includes_Animations.xml" /> - <include file="Includes_Controllers.xml" /> + <include file="Includes_Games.xml" /> <include file="Includes_MediaMenu.xml" /> <include file="Includes_Buttons.xml" /> <include file="Includes_DialogSelect.xml" /> diff --git a/addons/skin.estuary/xml/Includes_Controllers.xml b/addons/skin.estuary/xml/Includes_Games.xml index a7afe6ba70..a7afe6ba70 100644 --- a/addons/skin.estuary/xml/Includes_Controllers.xml +++ b/addons/skin.estuary/xml/Includes_Games.xml |