From 27b3b2cab5c2195384669e0527c4a609aae10ab5 Mon Sep 17 00:00:00 2001 From: leminlimez <59540996+leminlimez@users.noreply.github.com> Date: Mon, 13 Jan 2025 10:01:25 -0500 Subject: [PATCH] fix custom gestalt keys not working --- tweaks/custom_gestalt_tweaks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tweaks/custom_gestalt_tweaks.py b/tweaks/custom_gestalt_tweaks.py index 446d84f..1c4aed9 100644 --- a/tweaks/custom_gestalt_tweaks.py +++ b/tweaks/custom_gestalt_tweaks.py @@ -45,7 +45,7 @@ class CustomGestaltTweaks: custom_tweaks: list[CustomGestaltTweak] = [] def create_tweak(key: str="", value: str="1", value_type: ValueType = ValueType.Integer) -> int: - new_tweak = MobileGestaltTweak("", key, value=value) + new_tweak = MobileGestaltTweak(key, value=value) CustomGestaltTweaks.custom_tweaks.append(CustomGestaltTweak(new_tweak, value_type)) # return the tweak id return len(CustomGestaltTweaks.custom_tweaks) - 1