Skip to content
This repository has been archived by the owner on Jan 20, 2025. It is now read-only.

Commit

Permalink
fix custom gestalt keys not working
Browse files Browse the repository at this point in the history
  • Loading branch information
leminlimez committed Jan 13, 2025
1 parent 66df1f1 commit 27b3b2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tweaks/custom_gestalt_tweaks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 27b3b2c

Please sign in to comment.