from retail

fix of the reverted commit
This commit is contained in:
NoM0Re
2025-02-12 21:40:08 +01:00
parent a9b95ca09d
commit 5c9b4aeb4e
3 changed files with 32 additions and 4 deletions
+3 -1
View File
@@ -435,7 +435,9 @@ function OptionsPrivate.ConstructOptions(prototype, data, startorder, triggernum
name = L["Operator"],
order = order,
hidden = disabled or hidden,
values = arg.operator_types == "without_equal" and OptionsPrivate.Private.operator_types_without_equal or OptionsPrivate.Private.operator_types,
values = arg.operator_types == "without_equal" and OptionsPrivate.Private.operator_types_without_equal
or arg.operator_types == "only_equal" and OptionsPrivate.Private.equality_operator_types
or OptionsPrivate.Private.operator_types,
get = function()
return getValue(trigger, "use_"..realname, realname.."_operator", multiEntry, entryNumber)
end,