From bccffecef346e67ad44f2ed2546a38225dd9cac0 Mon Sep 17 00:00:00 2001 From: firestar5683 <168790843+firestar5683@users.noreply.github.com> Date: Mon, 30 Mar 2026 01:18:04 -0500 Subject: [PATCH] fix --- starpilot/system/the_pond/the_pond.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/starpilot/system/the_pond/the_pond.py b/starpilot/system/the_pond/the_pond.py index 14690b1b..860f0f1e 100644 --- a/starpilot/system/the_pond/the_pond.py +++ b/starpilot/system/the_pond/the_pond.py @@ -4319,7 +4319,7 @@ def setup(app): delete_file(destination_file) destination_file.symlink_to(file) - params.put_bool("PersonalizeOpenpilot", True) + params.put_bool("CustomThemes", True) params_memory.put_bool("UseActiveTheme", True) update_starpilot_toggles() @@ -4410,7 +4410,7 @@ def setup(app): "theme_names": {} } - if not params.get_bool("PersonalizeOpenpilot"): + if not params.get_bool("CustomThemes"): theme_data["theme_names"] = { "colors": "Stock", "distanceIcons": "Stock", @@ -4421,11 +4421,11 @@ def setup(app): } else: theme_param_map = { - "CustomColors": "colors", - "CustomDistanceIcons": "distanceIcons", - "CustomIcons": "icons", - "CustomSounds": "sounds", - "CustomSignals": "turnSignals", + "ColorScheme": "colors", + "DistanceIconPack": "distanceIcons", + "IconPack": "icons", + "SoundPack": "sounds", + "SignalAnimation": "turnSignals", "WheelIcon": "steeringWheel" } for param, theme_key in theme_param_map.items():