Fix negative decimal value detection in userPrefs (#5963)

This commit is contained in:
Ben Meadors
2025-01-29 20:52:24 -06:00
committed by GitHub
co-authored by GitHub
parent cd8592ef4a
commit b5cad2b65e
+1 -1
View File
@@ -102,7 +102,7 @@ pref_flags = []
for pref in userPrefs: for pref in userPrefs:
if userPrefs[pref].startswith("{"): if userPrefs[pref].startswith("{"):
pref_flags.append("-D" + pref + "=" + userPrefs[pref]) pref_flags.append("-D" + pref + "=" + userPrefs[pref])
elif userPrefs[pref].replace(".", "").isdigit(): elif userPrefs[pref].lstrip("-").replace(".", "").isdigit():
pref_flags.append("-D" + pref + "=" + userPrefs[pref]) pref_flags.append("-D" + pref + "=" + userPrefs[pref])
elif userPrefs[pref] == "true" or userPrefs[pref] == "false": elif userPrefs[pref] == "true" or userPrefs[pref] == "false":
pref_flags.append("-D" + pref + "=" + userPrefs[pref]) pref_flags.append("-D" + pref + "=" + userPrefs[pref])