From c5aa63890ab9b571084268570725da55f178b72d Mon Sep 17 00:00:00 2001 From: Dimitar Tsenev Date: Mon, 12 Jan 2026 17:16:56 +0200 Subject: [PATCH] [Removed] Separator line under Skin Config header entries [Updated] Indenting in child items in Skin Config edit screen --- lib/python/Plugins/SystemPlugins/SkinConfig/plugin.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/python/Plugins/SystemPlugins/SkinConfig/plugin.py b/lib/python/Plugins/SystemPlugins/SkinConfig/plugin.py index 422a41fa0c..81fdb6aa33 100644 --- a/lib/python/Plugins/SystemPlugins/SkinConfig/plugin.py +++ b/lib/python/Plugins/SystemPlugins/SkinConfig/plugin.py @@ -156,17 +156,15 @@ def createSetup(self): colors = file_tree.get("Colors", {}) if colors: configlist.append(("Colors",)) - configlist.append(("---",)) - configlist.append((" " + _("Color Theme"), self.color_scheme, _("Pick an option. After selection is saved GUI should be restarted to accept the changes."))) + configlist.append((" " + _("Color Theme"), self.color_scheme, _("Pick an option. After selection is saved GUI should be restarted to accept the changes."))) has_one = True screens = file_tree.get("Screens", {}) if screens: if has_one: configlist.append(("---",)) configlist.append(("Screens",)) - configlist.append(("---",)) for key, value in screens.items(): - configlist.append((" " + key, getattr(self, f"screen_{key.lower().replace(" ", "_")}"), _("Pick an option. After selection is saved GUI should be restarted to accept the changes."))) + configlist.append((" " + key, getattr(self, f"screen_{key.lower().replace(" ", "_")}"), _("Pick an option. After selection is saved GUI should be restarted to accept the changes."))) self["config"].list = configlist def keySave(self):